-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 947 Bytes
/
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
{
"name": "packemon",
"version": "1.0.0",
"license": "MIT",
"main": "./lib/node/index.js",
"module": "./esm/index.js",
"browser": "./lib/browser/index.js",
"files": [
"cjs/**/*.{cjs,map}",
"esm/**/*.{js,map}",
"lib/**/*.{js,map}",
"mjs/**/*.{mjs,map}",
"src/**/*.{ts,tsx,json}"
],
"scripts": {
"fmt": "run-s fmt:prettier fmt:package-json",
"fmt:prettier": "prettier --write --tab-width 2 '**/*.{js,jsx,ts,tsx,json,md,yml}'",
"fmt:package-json": "sort-package-json",
"build": "packemon build"
},
"dependencies": {
"@babel/runtime": "^7.25.9"
},
"devDependencies": {
"@takamachi/prettier-config": "^1.1.0",
"npm-run-all2": "^6.2.6",
"packemon": "^4.1.1",
"prettier": "^3.3.3",
"sort-package-json": "^2.10.1"
},
"packemon": {
"format": [
"lib",
"cjs",
"mjs",
"esm"
],
"platform": [
"browser",
"node"
]
}
}