-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.17 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.17 KB
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
{
"name": "clxx",
"version": "3.0.3",
"description": "Basic JS library for mobile devices",
"main": "./build/index.js",
"module": "./build/index.js",
"directories": {
"example": "example"
},
"scripts": {
"dev": "tsc -w --pretty",
"build": "rimraf ./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.14.0",
"dayjs": "^1.11.19",
"history": "^5.3.0",
"lodash": "^4.17.23"
},
"peerDependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@types/lodash": "^4.17.24",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"csstype": "^3.2.3",
"rimraf": "^6.1.3",
"typescript": "^5.9.3"
}
}