generated from ggondim-templates-typescript/template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.18 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@uuid-ts/uuid",
"version": "1.0.1",
"description": "An UUID class using the most used UUID implementations (v1, v4, v7) and TypeScript.",
"keywords": [
"uuid",
"uuidv1",
"uuidv4",
"uuidv7",
"typescript",
"uuid-typescript",
"uuid class"
],
"readme": "README.md",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"docs/",
"README.md"
],
"scripts": {
"build": "npm run create-index; npm run ts:build",
"build:production": "npm run create-index; npm run ts:build:production",
"create-index": "npx [email protected] single -p ./tsconfig.json -v -m -r -x --useUpperFirst",
"prepare": "husky install",
"prepublish": "npm run build",
"release-rc": "npm run release -- --prerelease rc",
"release": "npx standard-version",
"hook:commit-msg": "npx --no -- commitlint --edit $1",
"hook:pre-commit": "npm run lint; npm run ts:lint",
"lint": "eslint ./src/*.{ts,js} --format stylish",
"ts:lint": "tsc --noEmit",
"ts:build": "rimraf dist; mkdir dist; tsc",
"ts:build:production": "rimraf dist; mkdir dist; tsc -p ./tsconfig.production.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ggondim/uuid.git"
},
"author": {
"email": "[email protected]",
"name": "Gustavo Gondim",
"url": "https://github.com/ggondim"
},
"license": "LicenseRef-LICENSE",
"licenseRef": "docs/LICENSE",
"bugs": {
"url": "https://github.com/ggondim/uuid/issues"
},
"homepage": "https://github.com/ggondim/uuid#readme",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"ctix": "^0.6.0",
"eslint": "^9.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.6",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"typescript": "^5.6.3"
},
"dependencies": {
"uuid": "^11.0.3",
"uuidv7": "^1.0.2"
}
}