-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
73 lines (73 loc) · 1.65 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
{
"name": "vue-bind-once",
"version": "0.2.1",
"packageManager": "[email protected]",
"description": "A tiny, SSR-safe directive for binding random data to an element.",
"author": {
"name": "Daniel Roe <[email protected]>",
"url": "https://github.com/danielroe"
},
"license": "MIT",
"repository": "danielroe/vue-bind-once",
"keywords": [
"vue",
"directive",
"ssr"
],
"sideEffects": false,
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"!**/*.map",
"dist/**/*",
"dist/index.d.ts"
],
"scripts": {
"build": "unbuild",
"lint": "pnpm eslint --fix",
"prepare": "simple-git-hooks && pnpm build",
"prepublishOnly": "pnpm lint && pnpm test",
"release": "bumpp && npm publish",
"test": "vitest run"
},
"peerDependencies": {
"vue": "^3"
},
"dependencies": {
"scule": "^1.3.0"
},
"devDependencies": {
"@antfu/eslint-config": "3.11.2",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"@vitest/coverage-v8": "2.1.6",
"@vue/test-utils": "2.4.6",
"bumpp": "9.8.1",
"conventional-changelog-conventionalcommits": "8.0.0",
"esbuild": "0.24.0",
"eslint": "9.15.0",
"expect-type": "1.1.0",
"happy-dom": "15.11.7",
"lint-staged": "15.2.10",
"simple-git-hooks": "2.11.1",
"typescript": "5.7.2",
"unbuild": "2.0.0",
"vite": "6.0.1",
"vitest": "2.1.6",
"vue": "3.5.13"
},
"build": {
"externals": [
"vue"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": [
"pnpm eslint --fix"
]
}
}