generated from p233-studio/solid-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.92 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
74
75
76
77
78
{
"name": "pixel-mirror",
"version": "1.0.4",
"description": "Pixel Mirror helps developers achieve pixel-perfect UIs by easily overlaying design mockups.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "tsc && eslint --fix && stylelint --fix './src/**/*.scss'",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"exports": {
".": "./dist/index.js",
"./vite": {
"types": "./plugins/vite.d.ts",
"default": "./plugins/vite.js"
},
"./astro": {
"types": "./plugins/astro.d.ts",
"default": "./plugins/astro.js"
}
},
"keywords": [
"solid",
"vite",
"design"
],
"homepage": "https://github.com/p233-studio/pixel-mirror#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/p233-studio/pixel-mirror.git"
},
"bugs": {
"url": "https://github.com/p233-studio/pixel-mirror/issues"
},
"license": "Apache-2.0",
"author": "Peiwen Lu",
"devDependencies": {
"clsx": "^2.1.1",
"cssnano": "^7.0.6",
"cssnano-preset-advanced": "^7.0.6",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-solid": "^0.14.5",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"postcss-scss": "^4.0.9",
"prettier": "^3.4.2",
"sass": "^1.83.0",
"solid-js": "^1.9.3",
"stylelint": "^16.12.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-prettier": "^5.0.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5",
"vite-plugin-solid": "^2.11.0",
"vite-plugin-solid-svg": "^0.8.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix --max-warnings 0"
],
"*.scss": [
"stylelint --fix"
],
"!(package*).json": [
"prettier --write"
]
},
"files": [
"dist",
"plugins"
]
}