-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.96 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "taro-define-config",
"version": "0.10.3",
"packageManager": "[email protected]",
"description": "Provide a defineConfig function for tarojs config",
"keywords": [
"config",
"define-config",
"taro",
"taro-plugin",
"tarojs",
"typescript"
],
"license": "MIT",
"author": {
"name": "ntnyq",
"email": "[email protected]"
},
"homepage": "https://github.com/ntnyq/taro-define-config#readme",
"repository": "ntnyq/taro-define-config",
"bugs": {
"url": "https://github.com/ntnyq/taro-define-config/issues"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"lint": "eslint .",
"prepare": "husky",
"release": "run-s build release:check release:publish",
"release:check": "run-s lint typecheck",
"release:publish": "bumpp && pnpm publish",
"test": "vitest --typecheck",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@jridgewell/source-map": "^0.3.6",
"@types/html-minifier-terser": "^7.0.2",
"@types/node": "^22.10.5",
"rollup": "^4.30.1",
"tapable": "^2.2.1",
"vite": "^6.0.7",
"webpack": "^5.97.1",
"webpack-chain": "^6.5.1",
"webpack-dev-server": "^5.2.0"
},
"devDependencies": {
"@ntnyq/eslint-config": "^3.11.0",
"@ntnyq/prettier-config": "^1.22.1",
"bumpp": "^9.9.3",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"nano-staged": "^0.8.0",
"npm-run-all2": "^7.0.2",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^3.0.0-beta.3"
},
"nano-staged": {
"*.{js,ts,cjs,mjs,json,md,yml,yaml}": "eslint --fix"
}
}