@zerocarbon/erp-config-sdk 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +197 -0
- package/dist/index.d.ts +3997 -0
- package/dist/index.esm.js +40265 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +40318 -0
- package/dist/index.js.map +1 -0
- package/package.json +81 -0
package/package.json
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zerocarbon/erp-config-sdk",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Configuration SDK for ZeroCarbon ERP - Industry configurations, UI features, and emission types",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.esm.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.esm.js",
|
|
12
|
+
"require": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist/**/*"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "rollup -c",
|
|
21
|
+
"dev": "rollup -c -w",
|
|
22
|
+
"clean": "rimraf dist",
|
|
23
|
+
"prepublishOnly": "npm run clean && npm run build",
|
|
24
|
+
"type-check": "tsc --noEmit",
|
|
25
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
26
|
+
"lint:fix": "eslint src --ext .ts,.tsx --fix"
|
|
27
|
+
},
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "https://github.com/zerocarbon/erp-config-sdk.git"
|
|
31
|
+
},
|
|
32
|
+
"homepage": "https://github.com/zerocarbon/erp-config-sdk#readme",
|
|
33
|
+
"bugs": {
|
|
34
|
+
"url": "https://github.com/zerocarbon/erp-config-sdk/issues"
|
|
35
|
+
},
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public"
|
|
38
|
+
},
|
|
39
|
+
"keywords": [
|
|
40
|
+
"zerocarbon",
|
|
41
|
+
"erp",
|
|
42
|
+
"config",
|
|
43
|
+
"sdk",
|
|
44
|
+
"industry",
|
|
45
|
+
"emissions",
|
|
46
|
+
"carbon",
|
|
47
|
+
"typescript"
|
|
48
|
+
],
|
|
49
|
+
"author": "ZeroCarbon Team",
|
|
50
|
+
"license": "MIT",
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"react": ">=16.8.0",
|
|
53
|
+
"react-icons": ">=4.0.0"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
57
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
58
|
+
"@rollup/plugin-typescript": "^11.1.5",
|
|
59
|
+
"@types/react": "^18.2.43",
|
|
60
|
+
"@typescript-eslint/eslint-plugin": "^6.13.1",
|
|
61
|
+
"@typescript-eslint/parser": "^6.13.1",
|
|
62
|
+
"eslint": "^8.54.0",
|
|
63
|
+
"react": "^18.2.0",
|
|
64
|
+
"react-icons": "^4.12.0",
|
|
65
|
+
"rimraf": "^5.0.5",
|
|
66
|
+
"rollup": "^4.6.1",
|
|
67
|
+
"rollup-plugin-dts": "^6.1.0",
|
|
68
|
+
"typescript": "^5.3.2"
|
|
69
|
+
},
|
|
70
|
+
"repository": {
|
|
71
|
+
"type": "git",
|
|
72
|
+
"url": "https://github.com/zerocarbon/erp-config-sdk.git"
|
|
73
|
+
},
|
|
74
|
+
"bugs": {
|
|
75
|
+
"url": "https://github.com/zerocarbon/erp-config-sdk/issues"
|
|
76
|
+
},
|
|
77
|
+
"homepage": "https://github.com/zerocarbon/erp-config-sdk#readme",
|
|
78
|
+
"dependencies": {
|
|
79
|
+
"tslib": "^2.8.1"
|
|
80
|
+
}
|
|
81
|
+
}
|