-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.02 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
79
80
81
82
83
84
85
{
"name": "web-component-development",
"type": "module",
"version": "0.0.1",
"packageManager": "[email protected]",
"keywords": [
"frontend",
"quark",
"web components"
],
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.umd.js"
}
},
"main": "./lib/index.umd.js",
"module": "./lib/index.js",
"types": "./lib/types/index.d.ts",
"engines": {
"node": "20 || >=22"
},
"scripts": {
"dev": "npm run start",
"start": "vite --open",
"build": "rimraf dist && esno ./scripts/components-script.ts",
"test": "wtr",
"test:watch": "wtr --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"new": "plop",
"prepare": "simple-git-hooks"
},
"dependencies": {
"quarkc": "^2.2.1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.26.0",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-replace": "^6.0.1",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.7",
"@types/node": "^22.7.5",
"@unocss/eslint-plugin": "^0.61.4",
"@web/dev-server-esbuild": "^1.0.2",
"@web/dev-server-rollup": "^0.6.4",
"@web/test-runner": "^0.19.0",
"@web/test-runner-puppeteer": "^0.17.0",
"change-case": "^5.4.3",
"enquirer": "^2.4.1",
"eslint": "^9.10.0",
"eslint-plugin-format": "^0.1.2",
"esno": "^4.7.0",
"execa": "^9.3.1",
"fs-extra": "^11.2.0",
"jsdom": "^25.0.1",
"kolorist": "^1.8.0",
"less": "^4.2.0",
"lint-staged": "^15.2.10",
"plop": "^4.0.1",
"postcss": "^8.4.47",
"rimraf": "^6.0.1",
"rollup-plugin-postcss": "^4.0.2",
"simple-git-hooks": "^2.11.1",
"tslib": "^2.6.2",
"typescript": "^5.6.2",
"unocss": "^0.63.4",
"vite": "^5.4.3",
"vite-plugin-dts": "^4.2.1"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"eslint": "9"
}
}
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}