-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.87 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.87 KB
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
71
{
"name": "@supercharge/core",
"description": "The Supercharge foundation package",
"version": "4.0.0-alpha.2",
"author": "Marcus Pöhls <marcus@superchargejs.com>",
"bugs": {
"url": "https://github.com/supercharge/framework/issues"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.js",
"types": "dist",
"exports": {
".": "./dist/index.js"
},
"dependencies": {
"@supercharge/application": "^4.0.0-alpha.2",
"@supercharge/collections": "~5.0.1",
"@supercharge/console": "^4.0.0-alpha.2",
"@supercharge/contracts": "^4.0.0-alpha.2",
"@supercharge/errors": "~2.0.1",
"@supercharge/fs": "~3.4.2",
"@supercharge/goodies": "~2.0.0",
"@supercharge/http": "^4.0.0-alpha.2",
"@supercharge/set": "~2.2.1",
"@supercharge/support": "^4.0.0-alpha.2",
"type-fest": "~4.8.3",
"youch": "~3.3.3",
"youch-terminal": "~2.2.3"
},
"devDependencies": {
"@supercharge/view": "^4.0.0-alpha.2",
"c8": "~9.1.0",
"expect": "~29.7.0",
"sinon": "~17.0.1",
"supertest": "~7.0.0",
"typescript": "~5.4.5",
"uvu": "~0.5.6"
},
"engines": {
"node": ">=22"
},
"homepage": "https://superchargejs.com",
"keywords": [
"foundation",
"supercharge",
"superchargejs",
"nodejs"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"directory": "packages/core",
"url": "git+https://github.com/supercharge/framework.git"
},
"scripts": {
"build": "tsc --build tsconfig.json --force",
"dev": "npm run build -- --watch",
"watch": "npm run dev",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"test": "npm run build && npm run lint && npm run test:run",
"test:run": "c8 --include=dist uvu --ignore helpers --ignore fixtures",
"posttest": "c8 report --reporter=html"
}
}