-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 874 Bytes
/
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
{
"name": "naras.js",
"version": "0.1.0",
"description": "The simple audio library with WebAudioAPI.",
"main": "./dist/egak.min.js",
"module": "./dist/egak.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "vite build && tsc --emitDeclarationOnly --project tsconfig.exclude.json && tsc-paths -p tsconfig.exclude.json -s ./src -o ./dist",
"format": "prettier --write .",
"watch-build": "chokidar 'src/**/*' -c 'npm run build'",
"test": "vitest --environment=jsdom"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.5.0",
"chokidar-cli": "^3.0.0",
"jsdom": "^22.1.0",
"prettier": "^3.0.2",
"tsc-paths-resolver": "^0.1.3",
"typescript": "^4.6.2",
"vite": "^4.4.9",
"vitest": "^0.34.2"
}
}