-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
{
"name": "@airmus/utils",
"version": "1.0.3",
"license": "MIT",
"main": "./dist/lib/index.js",
"module": "./dist/es/index.js",
"typings": "./dist/es/index.d.ts",
"files": [
"dist",
"README.md",
"README.zh-CN.md"
],
"engines": {
"node": ">=14"
},
"scripts": {
"lint": "eslint --ext .ts,.tsx src",
"test": "vitest",
"prepare": "husky install",
"clean": "rimraf dist",
"prebuild": "npm run clean && npm run test",
"build": "tsc --outDir ./dist/es && tsc -m commonjs --outDir ./dist/lib",
"release": "npm run build && np --no-yarn --no-tests --no-cleanup --branch main"
},
"repository": {
"type": "git",
"url": "[email protected]:Airmus/utils.git"
},
"author": "Fog3211",
"devDependencies": {
"@airmus/eslint-config": "^0.40.1",
"@types/node": "^20.4.2",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"np": "^8.0.4",
"rimraf": "^5.0.1",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
},
"bugs": {
"url": "https://github.com/airmus/utils/issues"
},
"homepage": "https://github.com/airmus/utils#readme",
"publishConfig": {
"access": "public"
},
"sideEffects": false
}