generated from react-component/portal
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.78 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.78 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@rc-component/mini-decimal",
"version": "1.1.2",
"description": "Lite lib to only support decimal add calculation",
"keywords": [
"decimal"
],
"homepage": "https://github.com/react-component/mini-decimal",
"bugs": {
"url": "https://github.com/react-component/mini-decimal/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/react-component/mini-decimal.git"
},
"license": "MIT",
"author": "smith3816@gmail.com",
"main": "./lib/index",
"module": "./es/index",
"typings": "es/index.d.ts",
"files": [
"lib",
"es"
],
"scripts": {
"compile": "father build",
"deploy": "npm run docs:build && npm run docs:deploy",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d dist",
"coverage": "rc-test --coverage",
"lint": "eslint src/ --ext .tsx,.ts",
"lint:tsc": "tsc -p tsconfig.json --noEmit",
"now-build": "npm run docs:build",
"prepublishOnly": "npm run compile && rc-np",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"start": "dumi dev",
"test": "rc-test",
"watch": "father dev"
},
"dependencies": {
"@babel/runtime": "^7.18.0"
},
"devDependencies": {
"@rc-component/father-plugin": "^2.0.4",
"@rc-component/np": "^1.0.4",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^16.1.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@umijs/fabric": "^4.0.1",
"dumi": "^2.3.8",
"eslint": "^8.57.0",
"father": "^4.4.4",
"gh-pages": "^6.1.1",
"prettier": "^3.3.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rc-test": "^7.0.15",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=8.x"
}
}