-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.29 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
{
"version": "2.0.0",
"license": "MIT",
"name": "@urbit/aura",
"module": "dist/aura.esm.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=16",
"npm": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/urbit/aura-js"
},
"scripts": {
"start": "dts watch",
"build": "dts build",
"test": "dts test",
"prepare": "dts build",
"size": "size-limit",
"analyze": "size-limit --why"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^8.2.4",
"@tsconfig/recommended": "^1.0.2",
"dts-cli": "^2.0.0",
"husky": "^7.0.4",
"jsverify": "^0.8.4",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
},
"jest": {
"verbose": true
},
"husky": {
"hooks": {
"pre-commit": "dts lint"
}
},
"size-limit": [
{
"path": "dist/aura.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/aura.esm.js",
"limit": "10 KB"
}
],
"browserslist": {
"production": [
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}