-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 973 Bytes
/
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
{
"name": "ztcanvas",
"type": "module",
"version": "1.0.6",
"description": "a framework to help you build your canvas library easily",
"keywords": [],
"license": "ISC",
"author": "",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub",
"prepare": "husky install",
"test": "vitest",
"prepublishOnly": "npm run build",
"release": "bumpp && npm publish",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@vue/shared": "^3.2.37",
"nanoid": "^4.0.0",
"unbuild": "^0.7.4"
},
"devDependencies": {
"@alexzzz/eslint-config": "^1.3.0",
"bumpp": "^8.2.0",
"eslint": "^8.17.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"typescript": "^4.7.3",
"unplugin-auto-import": "^0.8.8",
"vitest": "^0.15.1"
}
}