-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.48 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
{
"name": "@sunny-117/jspack",
"type": "module",
"version": "0.0.1",
"description": "Powerful JavaScript Bundler",
"license": "MIT",
"homepage": "https://github.com/Sunny-117/jspack#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Sunny-117/jspack.git"
},
"bugs": {
"url": "https://github.com/Sunny-117/jspack/issues"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"babel-generator": "^6.26.1",
"babel-traverse": "^6.26.0",
"babel-types": "^6.26.0",
"chalk": "^5.3.0",
"ejs": "^3.1.5",
"isarray": "^2.0.5",
"less": "^3.12.2",
"mkdirp": "0.5.5",
"tapable": "1.1.3"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.2",
"@types/ejs": "^3.1.5",
"@types/neo-async": "^2.6.6",
"@types/node": "^20.10.7",
"babylon": "^6.18.0",
"eslint": "^8.56.0",
"neo-async": "^2.6.2",
"prettier": "^3.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}