forked from 07akioni/vooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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": "vooks",
"version": "0.2.12",
"description": "",
"main": "lib/index.js",
"module": "es/index.js",
"scripts": {
"clean": "rm -rf es lib",
"dev": "vite",
"test-dts": "tsc src/dts-test/index.spec.ts --noEmit --lib ESNext,DOM --target ESNext --moduleResolution node",
"test": "npm run test-dts && jest",
"lint": "eslint src/**/*",
"docs": "vitepress dev docs",
"build:site": "vitepress build docs",
"build": "npm run clean && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
"release": "rm -rf es lib && npm run build && npm publish"
},
"files": [
"lib",
"es"
],
"author": "07akioni",
"license": "MIT",
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.8",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"babel-jest": "^27.1.0",
"eslint": "^7.10.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.1.0",
"typescript": "^4.2.2",
"vite": "^2.0.4",
"vitepress": "^0.22.0",
"vue": "^3.0.0"
},
"dependencies": {
"evtd": "^0.2.2"
},
"sideEffects": false
}