-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 859 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 859 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
32
33
{
"name": "@willow-dls/example",
"version": "1.0.0",
"description": "A template package for Willow DLS applications utilizing TypeScript and Jest.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willow-dls/example.git"
},
"author": "Jordan Bancino",
"license": "ISC",
"bugs": {
"url": "https://github.com/willow-dls/example/issues"
},
"homepage": "https://github.com/willow-dls/example#readme",
"devDependencies": {
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.27.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.0",
"jest": "^29.7.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@willow-dls/core": "^0.4.1"
}
}