-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.59 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
{
"private": true,
"description": "Macro system for JavaScript and TypeScript.",
"scripts": {
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:update": "jest --updateSnapshot",
"build": "nx run-many --target=build --exclude *-project",
"build:force": "nx run-many --target=build --skip-nx-cache --exclude *-project",
"build:affected": "nx affected --target=build --exclude *-project",
"changeset": "changeset",
"bump": "changeset version",
"release": "node ./scripts/release.js",
"graph": "nx graph",
"coverage": "jest --coverage"
},
"author": "Raven Satir",
"license": "MIT",
"devDependencies": {
"@actions/exec": "^1.1.1",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@jest/types": "^29.5.0",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@swc/jest": "^0.2.26",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"nx": "15.8.7",
"rollup": "^3.21.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-typescript2": "^0.34.1",
"tslib": "^2.5.0",
"typescript": "5.0.3"
},
"dependencies": {
"@swc/core": "^1.3.55"
}
}