forked from BuilderIO/mitosis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "@builder.io/eslint-plugin-mitosis",
"version": "0.0.14",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"keywords": [
"builder",
"builder.io",
"eslint",
"eslintplugin",
"jsx",
"mitosis"
],
"repository": {
"type": "git",
"url": "https://github.com/BuilderIO/mitosis"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"build": "tsc",
"build:declaration": "tsc --project tsconfig.build.json",
"start": "tsc -w",
"remove-stableVersion": "./scripts/remove-stableVersion.sh",
"release:dev": "yarn build && yarn run remove-stableVersion && yarn version prerelease && yarn npm publish --tag dev",
"release:patch": "yarn build && yarn run remove-stableVersion && yarn version patch && yarn npm publish"
},
"files": [
"dist"
],
"peerDependencies": {
"eslint": ">=0.8.0"
},
"devDependencies": {
"@types/eslint": "^7.2.4",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^7.13.0",
"typescript": "^4.8.4",
"vite": "^3.2.2",
"vitest": "^0.24.5"
},
"dependencies": {
"@babel/types": "7.12.6",
"ts-pattern": "^3.3.5"
}
}