-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.19 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
{
"name": "vait",
"version": "4.2.1",
"main": "./dist/vait.common.js",
"module": "./dist/vait.esm.js",
"typings": "./types/index.d.ts",
"scripts": {
"test": "jest",
"test-watch": "jest ./src/ --watchAll",
"build:type": "rm -rf types/* && tsc -p ./tsconfig.type.json",
"build:rollup": "rollup -c rollup.config.js",
"build": "yarn build:type && yarn build:rollup",
"lint": "yarn eslint ./src/ --ext .js,.jsx,.ts,.tsx",
"lint-strict": "yarn lint --max-warnings 0"
},
"files": [
"dist",
"src",
"types"
],
"repository": "[email protected]:TorzoClub/vait.git",
"author": "vec <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/parser": "^7.17.12",
"@babel/preset-env": "^7.24.5",
"@babel/preset-typescript": "^7.24.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"babel-eslint": "^10.1.0",
"depd": "^1.1.2",
"eslint": "^8.57.0",
"jest": "^28.1.0",
"rollup": "^2.73.0",
"ts-node": "^10.7.0",
"tslib": "^2.4.0",
"typescript": "^5.4.5"
}
}