-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 748 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 748 Bytes
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
{
"name": "espressolang",
"version": "1.2.3",
"repository": {
"url": "https://github.com/TheTrio/Espresso"
},
"bin": "./bin/index.js",
"main": "./bin/main.js",
"types": "./types/main.d.ts",
"files": [
"bin",
"types"
],
"devDependencies": {
"@babel/preset-env": "^7.25.0",
"@babel/preset-typescript": "^7.24.7",
"@jest/globals": "^29.7.0",
"@types/node": "^22.0.0",
"jest": "^29.7.0",
"typescript": "^5.5.4"
},
"scripts": {
"test": "jest",
"watch:ts": "tsc --watch",
"build": "tsc",
"dev": "tsc && node bin",
"test:watch": "jest --watch",
"types": "tsc --declaration --emitDeclarationOnly --outDir types",
"prepublish": "pnpm run build && pnpm run types"
}
}