forked from m7yue/enumily
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.42 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.42 KB
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
{
"name": "enumily",
"private": false,
"description": "a powerful and flexible utility for creating enums, addressing the limitations of TypeScript's native enum and const objects.",
"keywords": [
"typescript enum",
"enum const",
"ts enum",
"type-safe enums",
"enum utilities"
],
"author": "m7yue <wl7yue@163.com>",
"homepage": "https://github.com/m7yue/enumily",
"repository": {
"type": "git",
"url": "https://github.com/m7yue/enumily"
},
"bugs": {
"url": "https://github.com/m7yue/enumily/issues",
"email": "wl7yue@163.com"
},
"license": "MIT",
"scripts": {
"build": "run-s clean:build build:source",
"build:cjs": "tsc -b ./tsconfig.cjs.json",
"build:esm": "tsc -b ./tsconfig.esm.json",
"build:source": "run-s build:cjs build:esm",
"clean:build": "shx rm -rf ./packages/*/*.tsbuildinfo && shx rm -rf ./packages/**/lib",
"clean": "run-p clean:build",
"test": "pnpm --filter \"./packages/**\" run test",
"test:coverage": "jest --collectCoverage --coverage",
"ci:publish": "pnpm publish -r",
"release": "tsx scripts/release.ts"
},
"types": "dist/index.d.ts",
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"shx": "^0.4.0",
"ts-jest": "^29.3.2",
"tsx": "^4.19.4",
"typescript": "5.3.2",
"zx": "^7.2.3"
}
}