-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.6 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.6 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@semi-design-solid/semi-design-solid-monorepo",
"type": "module",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@7.5.0",
"description": "@semi-design-solid",
"author": {
"name": "SoonIter",
"email": "1730214056@qq.com"
},
"license": "MIT",
"repository": "https://github.com/SoonIter/semi-design-solid",
"bugs": {
"url": "https://github.com/SoonIter/semi-design-solid/issues"
},
"keywords": [
"semi-design",
"solid"
],
"main": "",
"types": "",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup ./src/index.ts",
"release": "nr prerelease && nr build && pnpm publish",
"prerelease": "nr lint:fix && nr test:once",
"test": "vitest",
"test:once": "vitest run",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "nr lint --fix"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"solid-js": "^1.5.1"
},
"devDependencies": {
"@antfu/ni": "^0.16.3",
"@vitest/ui": "^0.15.1",
"c8": "^7.11.3",
"eslint": "^8.18.0",
"eslint-plugin-solid": "~0.7.1",
"@typescript-eslint/parser": "^5.35.1",
"happy-dom": "^6.0.3",
"lint-staged": "13.0.3",
"simple-git-hooks": "^2.8.0",
"tsup": "^6.1.3",
"typescript": "^4.7.4",
"vite": "^3.0.7",
"vitest": "^0.21.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --fix"
]
}
}