generated from yingpengsha/ts-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1 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
{
"name": "solid-use-vue-reactivity-shim",
"version": "0.0.1-beta.1",
"license": "MIT",
"author": "Pengsha Ying <[email protected]>",
"description": "Use @vue/reactivity in Solid.js",
"repository": "[email protected]:yingpengsha/solid-use-vue-reactivity-shim.git",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "tsup --watch --sourcemap --env.NODE_ENV development",
"build": "tsup --env.NODE_ENV production",
"release": "bump --commit --push --tag && pnpm publish",
"reset": "rimraf ./node_modules && pnpm install",
"postinstall": "npx only-allow pnpm"
},
"peerDependencies": {
"@vue/reactivity": "^3.0.0",
"solid-js": "^1.3.0"
},
"devDependencies": {
"@jsdevtools/version-bump-prompt": "^6.1.0",
"rimraf": "^3.0.2",
"tsup": "^5.12.9",
"typescript": "^4.9.4"
}
}