-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.4 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
{
"name": "explode.js",
"description": "Art is an explosion, explode.js is a JavaScript implementation of php's explode utility.",
"version": "1.0.1",
"author": "BWsix(VFLC)",
"keywords": [
"explode",
"php"
],
"homepage": "https://github.com/BWsix/explode.js#readme",
"repository": {
"type": "git",
"url": "https://github.com/BWsix/explode.js.git"
},
"bugs": {
"url": "https://github.com/BWsix/explode.js/issues"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/lib.esm.js",
"typings": "dist/index.d.ts",
"devDependencies": {
"@size-limit/preset-small-lib": "8.1.2",
"husky": "8.0.2",
"size-limit": "8.1.2",
"tsdx": "0.14.1",
"tslib": "2.4.1",
"typescript": "4.9.4"
},
"engines": {
"node": ">=14"
},
"files": [
"dist",
"src"
],
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"peerDependencies": {},
"prettier": {
"printWidth": 80,
"trailingComma": "es5",
"semi": true,
"singleQuote": true
},
"scripts": {
"analyze": "size-limit --why",
"build": "tsdx build",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"start": "tsdx watch",
"test": "tsdx test"
},
"size-limit": [
{
"limit": "10 KB",
"path": "dist/lib.cjs.production.min.js"
},
{
"limit": "10 KB",
"path": "dist/lib.esm.js"
}
]
}