-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 849 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 849 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": "nami",
"type": "module",
"version": "0.2.0-dev",
"description": "Nami: World Generator",
"author": "Karlisson de Macedo Bezerra",
"license": "MIT",
"bugs": {
"url": "https://github.com/hacktoon/nami/issues"
},
"homepage": "https://github.com/hacktoon/nami",
"scripts": {
"dev": "parcel serve src/index.html --dist-dir build",
"build": "parcel build src/index.html --dist-dir build --public-url ./ --no-source-maps",
"test": "npx vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hacktoon/nami.git"
},
"dependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"parcel": "^2.16.3",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"tone": "^15.1.22"
},
"devDependencies": {
"process": "^0.11.10",
"vitest": "^4.0.16"
}
}