-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.36 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
{
"author": "Sora Tonami <[email protected]>",
"bugs": {
"url": "https://github.com/ms0503/space/issues"
},
"dependencies": {
"dotenv": "^16.0.0"
},
"description": "A package manager for Linux.",
"devDependencies": {
"@types/eslint": "^8.4.1",
"@types/node": "^17.0.21",
"cross-env": "^7.0.3",
"eslint": "^8.11.0",
"eslint-config-eslint": "^7.0.0",
"eslint-plugin-node": "^11.1.0",
"node-getopt": "^0.3.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"ts-node-dev": "^2.0.0-0",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
},
"homepage": "https://github.com/ms0503/space#readme",
"keywords": [
"packagemanager"
],
"license": "GPL-3.0-or-later",
"main": "dist/bin/space",
"name": "space",
"repository": {
"type": "git",
"url": "https://github.com/ms0503/space.git"
},
"scripts": {
"build": "npm-run-all clean tsc build:after",
"build:after": "bash after_build.sh",
"clean": "rimraf dist/*",
"dev": "ts-node src/Main.ts",
"dev:watch": "ts-node-dev --respawn src/Main.ts",
"start": "dist/bin/space",
"test": "dist/bin/space -T",
"tsc": "tsc"
},
"type": "module",
"version": "0.1.0"
}