-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 896 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 896 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
34
35
{
"name": "rtpackjs",
"version": "1.1.1",
"description": "Converting a texture image into ProtonSDK standard texture",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "rimraf dist && npm run build && npm start",
"test": "npm run dev && node test/test.js"
},
"homepage": "https://github.com/JadlionHD/RTPackJS#readme",
"bugs": {
"url": "https://github.com/JadlionHD/RTPackJS/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JadlionHD/RTPackJS.git"
},
"keywords": [],
"author": "JadlionHD <jadlion.dev@gmail.com>",
"license": "MIT",
"dependencies": {
"imagescript": "^1.2.15"
},
"devDependencies": {
"@types/node": "^18.11.17",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=14.0.0"
}
}