-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
70 lines (70 loc) · 1.65 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
{
"name": "@enhance/arc-plugin-enhance",
"version": "11.0.4",
"main": "src/plugins/enhance.js",
"exports": {
".": "./src/plugins/enhance.js",
"./src/http/any-catchall/index.mjs": "./src/http/any-catchall/index.mjs",
"./src/http/any-catchall/router.mjs": "./src/http/any-catchall/router.mjs"
},
"license": "Apache-2.0",
"homepage": "https://enhance.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/enhance-dev/arc-plugin-enhance.git"
},
"bugs": {
"url": "https://github.com/enhance-dev/arc-plugin-enhance/issues"
},
"engines": {
"node": ">=16"
},
"scripts": {
"start": "sandbox",
"lint": "eslint . --fix",
"test": "npm run lint && tape test/*.mjs | tap-arc"
},
"files": [
"app/*",
"models/*",
"src/*",
"public/*",
".arc"
],
"dependencies": {
"@architect/asap": "^7.0.10",
"@architect/functions": "^8.1.6",
"@begin/data": "^5.0.5",
"@enhance/arc-plugin-rollup": "^2.0.0",
"@enhance/enhance-style-transform": "^0.1.2",
"@enhance/import-transform": "^4.0.1",
"@enhance/ssr": "^4.0.3",
"glob": "^9.3.5",
"header-timers": "^0.3.0"
},
"devDependencies": {
"@architect/eslint-config": "^2.1.2",
"@architect/sandbox": "^6.0.1",
"eslint": "^8.56.0",
"tap-arc": "^1.2.2",
"tape": "^5.7.4",
"tiny-json-http": "^7.5.1"
},
"eslintConfig": {
"extends": "@architect/eslint-config",
"overrides": [
{
"files": [
"*"
],
"rules": {
"filenames/match-regex": [
"error",
"^[a-z0-9-_.$]+$",
true
]
}
}
]
}
}