forked from roundware/roundware-web-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.54 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.54 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "roundware-web-framework",
"homepage": "https://roundware.github.io/roundware-web-framework/",
"repository": {
"type": "git",
"url": "git+https://github.com/roundware/roundware-web-framework.git"
},
"version": "0.12.8-alpha.18",
"description": "Client framework for Roundware, a location-based contributory audio platform",
"files": [
"dist"
],
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "rm -rf dist && NODE_ENV=production && npm-run-all --parallel build:*",
"build:main": "tsup src/index.ts --dts --format esm,cjs",
"docbuild": "jsdoc --verbose -c ./config/jsdoc.json",
"devstart": "NODE_ENV=development webpack server",
"deploy": "np",
"lint": "eslint src/",
"watch:babel": "babel --watch src --out-dir dist --extensions '.ts'",
"watch:declarations": "tsc --declaration --outDir dist/ --emitDeclarationOnly --watch",
"watch": "npm-run-all --parallel watch:*"
},
"watch": {
"test": "{src,test}/*.js"
},
"keywords": [
"audio",
"roundware"
],
"author": "Mike Subelsky <mike@subelsky.com> (http://www.subelsky.com/)",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/roundware/roundware-web-framework/issues"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.8",
"@babel/preset-env": "^7.26.8",
"@babel/preset-typescript": "^7.26.0",
"@faker-js/faker": "^7.6.0",
"@types/jest": "^28.1.8",
"@types/sinon": "^17.0.3",
"@types/ws": "^8.5.4",
"babel-loader": "^9.2.1",
"date-fns": "^2.30.0",
"eslint": "^8.57.1",
"eslint-plugin-compat": "^4.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdoc": "^4.0.4",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"standardized-audio-context-mock": "^9.7.15",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
},
"dependencies": {
"@turf/bbox": "^6.5.0",
"@turf/boolean-point-in-polygon": "^6.5.0",
"@turf/buffer": "^6.5.0",
"@turf/distance": "^6.5.0",
"@turf/line-to-polygon": "^6.5.0",
"@turf/point-to-line-distance": "^6.5.0",
"@types/lodash": "^4.17.15",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"loglevel": "^1.9.2",
"standardized-audio-context": "^25.3.77"
},
"np": {
"anyBranch": true,
"tests": false,
"yarn": false
}
}