-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.17 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
49
50
51
52
53
54
55
56
57
58
{
"name": "ts2civet",
"version": "1.0.0-beta.10",
"description": "Converts typescript code to civet code",
"main": "dist/cli.js",
"bin": {
"ts2civet": "dist/cli.js"
},
"repository": "github:esthedebeste/ts2civet",
"exports": {
"import": "./dist/transform.js",
"types": "./dist/transform.civet.d.ts"
},
"types": "./dist/transform.civet.d.ts",
"scripts": {
"build": "rollup --config rollup.config.civet --configPlugin @danielx/civet/rollup",
"prepare": "pnpm build",
"start": "node --loader @danielx/civet/esm ./src/cli.civet",
"test": "c8 node --loader @danielx/civet/esm --test test/_run.civet"
},
"keywords": [
"typescript",
"civet"
],
"author": "esthedebeste",
"license": "MIT",
"dependencies": {
"code-block-writer": "^12.0.0",
"glob": "^10.3.10",
"meow": "^13.2.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@danielx/civet": "^0.6.83",
"@types/node": "^20.11.24",
"@types/prettier": "^3.0.0",
"c8": "^9.1.0",
"prettier": "^3.2.5",
"rollup": "^4.12.0"
},
"files": [
"dist"
],
"c8": {
"all": true,
"reporter": [
"lcov",
"text"
],
"extension": [
".civet"
],
"include": [
"src"
]
},
"type": "module"
}