cm-reporting 0.1.0 → 0.1.2

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.
Files changed (1) hide show
  1. package/package.json +46 -19
package/package.json CHANGED
@@ -1,9 +1,32 @@
1
1
  {
2
2
  "name": "cm-reporting",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Conflict Minerals Reporting Template Components",
5
5
  "license": "PolyForm-Noncommercial-1.0.0",
6
- "packageManager": "pnpm@10.28.2",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/cirscn/cm-reporting.git",
9
+ "directory": "app"
10
+ },
11
+ "homepage": "https://github.com/cirscn/cm-reporting",
12
+ "bugs": {
13
+ "url": "https://github.com/cirscn/cm-reporting/issues"
14
+ },
15
+ "keywords": [
16
+ "react",
17
+ "conflict-minerals",
18
+ "reporting",
19
+ "rmi",
20
+ "cmrt",
21
+ "emrt",
22
+ "crt",
23
+ "amrt",
24
+ "antd",
25
+ "component-library"
26
+ ],
27
+ "engines": {
28
+ "node": ">=18.0.0"
29
+ },
7
30
  "type": "module",
8
31
  "main": "./dist/index.cjs",
9
32
  "module": "./dist/index.js",
@@ -23,22 +46,6 @@
23
46
  "sideEffects": [
24
47
  "**/*.css"
25
48
  ],
26
- "scripts": {
27
- "dev": "vite",
28
- "build": "tsc -b && vite build",
29
- "build:lib": "vite build --config vite.lib.config.ts",
30
- "lint": "eslint .",
31
- "lint:fix": "eslint . --fix",
32
- "format": "prettier --write .",
33
- "preview": "vite preview",
34
- "validate:templates": "node scripts/validate-templates.js",
35
- "generate:excel-mapping": "node scripts/generate-excel-mapping.js",
36
- "validate:excel-mapping": "node scripts/generate-excel-mapping.js --check",
37
- "pretest": "pnpm validate:templates && pnpm validate:excel-mapping",
38
- "test": "vitest run",
39
- "sg:scan": "sg scan -c ../sgconfig.yml ./src",
40
- "sg:fix": "sg scan -c ../sgconfig.yml ./src -U"
41
- },
42
49
  "peerDependencies": {
43
50
  "@ant-design/icons": "^5.0.0 || ^6.0.0",
44
51
  "antd": "^5.0.0 || ^6.0.0",
@@ -66,6 +73,7 @@
66
73
  },
67
74
  "devDependencies": {
68
75
  "@ant-design/icons": "^6.1.0",
76
+ "@changesets/cli": "^2.29.8",
69
77
  "@eslint/js": "^9.39.1",
70
78
  "@tailwindcss/cli": "^4.1.18",
71
79
  "@tailwindcss/postcss": "^4.1.18",
@@ -95,5 +103,24 @@
95
103
  "vite-plugin-dts": "^4.5.4",
96
104
  "vite-plugin-static-copy": "^3.2.0",
97
105
  "vitest": "^4.0.18"
106
+ },
107
+ "scripts": {
108
+ "dev": "vite",
109
+ "build": "tsc -b && vite build",
110
+ "build:lib": "vite build --config vite.lib.config.ts",
111
+ "lint": "eslint .",
112
+ "lint:fix": "eslint . --fix",
113
+ "format": "prettier --write .",
114
+ "preview": "vite preview",
115
+ "validate:templates": "node scripts/validate-templates.js",
116
+ "generate:excel-mapping": "node scripts/generate-excel-mapping.js",
117
+ "validate:excel-mapping": "node scripts/generate-excel-mapping.js --check",
118
+ "pretest": "pnpm validate:templates && pnpm validate:excel-mapping",
119
+ "test": "vitest run",
120
+ "sg:scan": "sg scan -c ../sgconfig.yml ./src",
121
+ "sg:fix": "sg scan -c ../sgconfig.yml ./src -U",
122
+ "changeset": "changeset",
123
+ "version-packages": "changeset version",
124
+ "release": "changeset publish"
98
125
  }
99
- }
126
+ }