-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
{
"name": "@xpresser/framework",
"version": "0.0.46",
"description": "Xpresser v2 Core",
"type": "module",
"exports": {
".": {
"import": "./build/index.js",
"types": "./build/index.d.ts"
},
"./*": {
"import": "./build/*",
"types": "./build/*.d.ts"
}
},
"repository": "https://github.com/xpresserjs/framework-v2",
"author": "xpresserjs",
"license": "MIT",
"private": false,
"scripts": {
"watch": "npx tsc --watch",
"build": "npm run build:before && npx tsc",
"build:before": "rm -rf build",
"build:after": "rm build/package.json",
"dev:ts": "npx nodemon dev/test.ts",
"dev:ts:cli": "npx nodemon dev/test.ts -- cli ls",
"dev:js": "npx nodemon build/dev/test.js",
"dev:js:cli": "npx nodemon build/dev/test.js -- cli ls",
"bun:dev:ts": "bun run --watch dev/test.ts",
"bun:dev:ts:cli": "bun run --watch dev/test.ts cli ls",
"prepublishOnly": "npm run build",
"test": "npx tsx bin/test.ts",
"test:watch": "npx tsx --watch bin/test.ts"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@japa/assert": "^3.0.0",
"@japa/runner": "^3.1.4",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.6.1",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"dependencies": {
"chalk": "^5.3.0",
"lodash-es": "^4.17.21",
"moment": "^2.30.1",
"object-collection": "4.1.5"
}
}