-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1009 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1009 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
36
37
38
39
40
41
42
{
"name": "clemfun-ts",
"version": "0.1.10",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "node dist/index.js",
"build": "rm -f schema.ts && tsc && tsc-alias",
"build-win": "del schema.ts && tsc && tsc-alias",
"test": "tsc && tsc-alias && node dist/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ClemCa/FunTS.git"
},
"author": "ClemCa",
"license": "GLWTPL",
"bugs": {
"url": "https://github.com/ClemCa/FunTS/issues"
},
"homepage": "https://github.com/ClemCa/FunTS#readme",
"devDependencies": {
"@types/express": "5.0.3",
"concurrently": "9.2.0",
"tsc-alias": "^1.8.10",
"tsc-watch": "7.1.1",
"typescript": "^5.6.3"
},
"dependencies": {
"express": "5.1.0",
"prompt-sync": "^4.2.0"
},
"files": [
"/dist/**/*.js",
"/dist/**/*.d.ts",
"!/dist/test.js",
"!/dist/test.d.ts",
"!/dist/schema.js",
"!/dist/schema.d.ts"
],
"description": ""
}