forked from Shopify/restyle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "@td-design/taro-style",
"version": "0.1.0",
"license": "MIT",
"description": "A system for building constraint-based UI components",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsc",
"lint": "eslint '**/*.{ts,tsx}' && yarn tsc --noEmit",
"lint-fix": "eslint --fix '**/*.{ts,tsx}'",
"prepublishOnly": "yarn run build"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"author": "thundersdata-frontend",
"repository": {
"type": "git",
"url": "git+https://github.com/thundersdata-frontend/taro-style.git"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@tarojs/components": "^3.6.12",
"@tarojs/react": "^3.6.12",
"@tarojs/taro": "^3.6.12",
"@types/react": "^18.0.24",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"babel-preset-taro": "^3.6.12",
"eslint": "^8.32.0",
"eslint-config-taro": "^3.6.12",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^5.0.0",
"prettier": "^2.4.1",
"react": "^18.2.0",
"react-test-renderer": "^18.2.0",
"typescript": "^4.8.4"
},
"peerDependencies": {
"@tarojs/components": "*",
"@tarojs/react": "*",
"@tarojs/taro": "*",
"react": "*"
},
"files": [
"dist/*"
]
}