-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1017 Bytes
/
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
{
"name": "@formidablejs/ts-ports",
"version": "0.4.5",
"description": "Enables TypeScript support in the Formidable framework",
"main": "lib/index.js",
"bugs": "https://github.com/formidablejs/ts-ports/issues",
"homepage": "https://formidablejs.org",
"repository": "https://github.com/formidablejs/ts-ports",
"files": [
"lib",
"src"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cp": "cp src/Commands/Interface/stub lib/Commands/Interface && cp src/Commands/Type/stub lib/Commands/Type",
"build": "tsc"
},
"types": "lib/index.d.ts",
"keywords": [
"Formidable",
"TypeScript"
],
"author": "Donald Pakkies",
"license": "MIT",
"peerDependencies": {
"@formidablejs/framework": ">=0.12.9"
},
"devDependencies": {
"@formidablejs/console": "^0.0.10",
"@formidablejs/framework": "^0.13.11",
"@formidablejs/stubs": "^0.4.0",
"@types/glob": "^8.0.0",
"@types/node": "^18.11.7",
"typescript": "^4.9.4"
}
}