-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.31 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
{
"name": "pinia-auto-refs",
"version": "0.0.12",
"description": "Auto storeToRefs for use pinia state.",
"author": "Allen-1998",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Allen-1998/pinia-auto-refs.git"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist",
"*.d.ts"
],
"sideEffects": false,
"scripts": {
"build": "tsup-node src/*.ts --format cjs,esm --dts --splitting --clean",
"lint": "eslint . --ext .ts",
"docs": "vitepress dev docs",
"docs:build": "vitepress build docs",
"p": "git add . && git commit -m feat: update && git push",
"v": "npm version patch && git push && git push origin --tags"
},
"dependencies": {
"chokidar": "3.5.3"
},
"devDependencies": {
"@babel/types": "7.17.0",
"@types/node": "17.0.21",
"@typescript-eslint/eslint-plugin": "5.14.0",
"@typescript-eslint/parser": "5.14.0",
"eslint": "8.10.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"prettier": "2.5.1",
"tsup": "5.12.7",
"typescript": "4.5.4",
"vitepress": "0.22.4"
}
}