forked from deamme/ts-transform-inferno
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.23 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
{
"name": "ts-plugin-inferno",
"version": "6.1.0",
"description": "A typescript transformer for InfernoJS",
"bugs": {
"url": "https://github.com/infernojs/ts-plugin-inferno/issues"
},
"homepage": "https://github.com/infernojs/ts-plugin-inferno#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/infernojs/ts-plugin-inferno.git"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"keywords": [
"typescript",
"transform",
"inferno"
],
"scripts": {
"test": "rimraf tests/temp && rimraf tests/tempES6 && ts-node tests/index.ts",
"debug": "rimraf tests/temp && rimraf tests/tempES6 && npm run build && node --inspect-brk --require ts-node/register tests/index.ts",
"build": "tsc",
"overwrite-references": "ts-node tests/overwriteReferences.ts",
"prepublishOnly": "rimraf dist && tsc"
},
"engines": {
"node": ">=16"
},
"author": "Deam Hansen, Sampo Kivistö <havunen>",
"license": "MIT",
"dependencies": {
"typescript": "^5.5.4"
},
"devDependencies": {
"@types/node": "^22.5.1",
"cross-env": "^7.0.3",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"inferno": "^8.2.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2"
}
}