-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"name": "@eterxing/jstools",
"description": "A diverse JS tool library",
"version": "0.0.3",
"type": "module",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"index.d.ts"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./index.d.ts",
"license": "MIT",
"author": "eterxing",
"exports": {
"types": "./index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"pv": "npm run build && npm publish",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"docs:deploy": "sh deploy.sh"
},
"homepage": "https://github.com/eterXing/jstools",
"bugs": "https://github.com/eterXing/jstools/issues",
"repository": {
"type": "git",
"url": "https://github.com/eterXing/jstools.git"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-ali": "^14.0.2",
"prettier": "^3.0.0",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vitepress": "*"
}
}