-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
{
"name": "ts-macros",
"version": "2.6.2",
"description": "A typescript transformer / plugin which allows you to write macros for typescript!",
"main": "dist/index.js",
"bin": "dist/cli/index.js",
"dependencies": {
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^9.1.1",
"@types/node": "^16.18.103",
"@types/ts-expose-internals": "npm:ts-expose-internals@^5.6.2",
"@types/yargs-parser": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"chai": "^4.3.8",
"diff": "^5.1.0",
"eslint": "^7.32.0",
"mocha": "^9.2.2",
"ts-patch": "^3.2.1",
"typescript": "^5.6.2"
},
"peerDependencies": {
"typescript": "5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x"
},
"scripts": {
"build": "tsc",
"lint": "npx eslint",
"test": "tsc && cd ./tests && tspc && mocha dist/integrated/**/*.js && node ./dist/snapshots/index",
"playground": "tsc && cd ./playground && npm run dev",
"manual": "tsc && cd ./test && tspc",
"prepublishOnly": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleFeud/ts-macros.git"
},
"keywords": [
"typescript",
"macros"
],
"author": "GoogleFeud",
"license": "MIT",
"bugs": {
"url": "https://github.com/GoogleFeud/ts-macros/issues"
},
"homepage": "https://googlefeud.github.io/ts-macros/"
}