-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
51 lines (51 loc) · 1.13 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
{
"name": "clxx",
"version": "2.1.3",
"description": "Basic JS library for mobile devices",
"main": "./build/index.js",
"module": "./build/index.js",
"directories": {
"example": "example"
},
"scripts": {
"start": "tsc -w --pretty",
"build": "rm -rfv ./build && tsc",
"pub": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joye61/clxx.git"
},
"keywords": [
"react",
"emotion",
"typescript",
"mobile",
"h5"
],
"author": "Joye",
"license": "MIT",
"bugs": {
"url": "https://github.com/joye61/clxx/issues"
},
"homepage": "https://github.com/joye61/clxx#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"dayjs": "^1.11.5",
"history": "^5.3.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/lodash": "^4.14.182",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"csstype": "^3.1.0",
"typescript": "^4.9.5"
}
}