-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.8 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.8 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
71
72
73
74
{
"name": "module-template",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@10.29.3",
"description": "",
"author": "zzxming",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/quill-modules/module-template"
},
"keywords": [
"quill",
"module"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./index.css": "./dist/index.css",
"./module.css": "./dist/module.css"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"dev": "tsx ./scripts/build.ts --dev",
"build": "tsx ./scripts/build.ts",
"test": "vitest",
"lint": "eslint"
},
"peerDependencies": {
"quill": "^2.0.3"
},
"devDependencies": {
"@prettier/plugin-xml": "^3.4.2",
"@types/gulp": "^4.0.18",
"@types/gulp-clean-css": "^4.3.4",
"@types/gulp-less": "^0.0.36",
"@types/gulp-postcss": "^8.0.6",
"@types/minimist": "^1.2.5",
"@types/node": "^22.19.11",
"@types/postcss-pxtorem": "^6.1.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"@unocss/cli": "^66.6.0",
"@unocss/eslint-plugin": "^66.6.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"@zzxming/eslint-config": "^0.6.3",
"autoprefixer": "^10.4.24",
"eslint": "^10.0.0",
"gulp": "^5.0.1",
"gulp-clean-css": "^4.3.0",
"gulp-less": "^5.0.0",
"gulp-postcss": "^10.0.0",
"jsdom": "^28.0.0",
"minimist": "^1.2.8",
"open": "^11.0.0",
"postcss-pxtorem": "^6.1.0",
"tsdown": "^0.20.3",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"unocss": "^66.6.0",
"vitest": "^4.0.18",
"ws": "^8.19.0"
}
}