-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 1.81 KB
/
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
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
86
87
88
89
{
"name": "devpunks.studio",
"private": true,
"type": "module",
"license": "MIT",
"version": "0.15.9-1",
"module": "./index.es",
"contributors": [],
"author": "devPunks",
"keywords": [
"science",
"technology",
"engineering",
"music"
],
"description": "devPunks.studio",
"homepage": "https://github.com/devpunks/studio#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/devpunks/studio.git"
},
"bugs": {
"url": "https://github.com/devpunks/studio/issues"
},
"workspaces": [
"audio"
],
"main": "index.es",
"files": [],
"packageManager": "[email protected]",
"config": {
"PORT": "8080"
},
"exports": {
".": {
"browser": {
"default": "./index.js"
}
}
},
"cpu": [
"!arm32",
"x64",
"arm64"
],
"os": [
"!win32",
"linux",
"darwin",
"android"
],
"engines": {
"npm": "9.x",
"node": "18.x"
},
"directories": {
"bin": ".bin",
"man": ".man",
"audio": "audio"
},
"bin": {
"run": "./bin/run"
},
"peerDependencies": {
"pm2": "^5.4.3"
},
"dependencies": {
"express": "^4.21.2",
"postcss": "^8.4.49",
"postcss-import": "^15.1.0",
"vercel": "^19.2.0"
},
"scripts": {
"dev": "pm2-dev",
"log": "pm2 log all",
"test": "node --test",
"start": "snuggsi serve",
"kill": "pm2 delete all",
"monitor": "pm2 monit all",
"restart": "pm2 restart all",
"package": "snuggsi package",
"install": "echo Installing devPunks.studio",
"preinstall": "echo pre-Installing devPunks.studio",
"postinstall": "echo post-Installing devPunks.studio",
"preversion": "echo preversion",
"version": "echo npm version ; echo $npm_package_version # git add -A dist",
"postversion": "echo $npm_package_version"
}
}