@996-design/996-ui 0.1.1 → 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.
Files changed (1) hide show
  1. package/package.json +61 -21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@996-design/996-ui",
3
- "version": "0.1.1",
3
+ "version": "1.0.0",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -35,7 +35,26 @@
35
35
  "./package.json": "./package.json"
36
36
  },
37
37
  "style": "./dist/styles.css",
38
+ "scripts": {
39
+ "check": "tsc -p tsconfig.json && bun -e \"await import('./src/index.ts')\" && bun run check:standalone",
40
+ "check:browser": "pnpm run build:demo && node scripts/check-demo-smoke.mjs",
41
+ "build": "bun scripts/build-996-design-source-package.ts",
42
+ "dev": "vite --config demo/vite.config.ts --host 0.0.0.0 --port 5174 --strictPort",
43
+ "build:demo": "vite build --config demo/vite.config.ts",
44
+ "ux:qa": "bun scripts/run-ux-crop-qa.ts",
45
+ "ux:rect": "bun scripts/run-ux-rect-qa.ts",
46
+ "check:standalone": "bun scripts/check-standalone.ts"
47
+ },
38
48
  "dependencies": {
49
+ "@996-design/996-components": "^1.0.0",
50
+ "@996-design/996-color": "^1.0.0",
51
+ "@996-design/996-color-picker": "^1.0.0",
52
+ "@996-design/996-icons": "^1.0.0",
53
+ "@996-design/996-motion": "^1.0.0",
54
+ "@996-design/996-slick": "^1.0.0",
55
+ "@996-design/996-style": "^1.0.0",
56
+ "@996-design/996-tokens": "^1.0.0",
57
+ "@996-design/996-utils": "^1.0.0",
39
58
  "@rc-component/cascader": "~1.17.0",
40
59
  "@rc-component/checkbox": "~2.0.0",
41
60
  "@rc-component/collapse": "~1.2.0",
@@ -72,16 +91,7 @@
72
91
  "@rc-component/upload": "~1.1.1",
73
92
  "@rc-component/util": "^1.11.1",
74
93
  "dayjs": "^1.11.11",
75
- "scroll-into-view-if-needed": "^3.1.0",
76
- "@996-design/996-components": "6.5.1",
77
- "@996-design/996-color": "0.1.0",
78
- "@996-design/996-slick": "2.0.0",
79
- "@996-design/996-motion": "0.1.0",
80
- "@996-design/996-style": "0.1.0",
81
- "@996-design/996-color-picker": "3.1.1",
82
- "@996-design/996-icons": "6.3.2",
83
- "@996-design/996-tokens": "0.1.0",
84
- "@996-design/996-utils": "0.1.0"
94
+ "scroll-into-view-if-needed": "^3.1.0"
85
95
  },
86
96
  "peerDependencies": {
87
97
  "react": "^19.0.0",
@@ -96,7 +106,41 @@
96
106
  "react-dom": "^19.0.0",
97
107
  "tailwindcss": "4.3.2",
98
108
  "typescript": "^6.0.0",
99
- "vite": "5.2.14"
109
+ "vite": "5.2.14",
110
+ "@996-design/996-colors": "^1.0.0",
111
+ "@996-design/996-cssinjs": "^1.0.0",
112
+ "@996-design/996-cssinjs-utils": "^1.0.0",
113
+ "@996-design/996-fast-color": "^1.0.0",
114
+ "@babel/runtime": "^7.29.2",
115
+ "clsx": "^2.1.1",
116
+ "throttle-debounce": "^5.0.2",
117
+ "@996-design/996-image-crop": "^1.0.0",
118
+ "@996-design/996-theme-runtime": "^1.0.0",
119
+ "@996-design/996-happy-work-theme": "^1.0.0",
120
+ "@996-design/996-tools": "^1.0.0",
121
+ "@dnd-kit/core": "^6.3.1",
122
+ "@dnd-kit/modifiers": "^9.0.0",
123
+ "@dnd-kit/sortable": "^10.0.0",
124
+ "@dnd-kit/utilities": "^3.2.2",
125
+ "@rc-component/virtual-list": "^1.0.2",
126
+ "@types/lodash": "^4.17.24",
127
+ "@types/node": "^24.0.0",
128
+ "@types/prismjs": "^1.26.6",
129
+ "@types/react-highlight-words": "^0.20.1",
130
+ "@types/throttle-debounce": "^5.0.2",
131
+ "lodash": "^4.18.1",
132
+ "lunar-typescript": "^1.8.6",
133
+ "motion": "^12.42.0",
134
+ "prismjs": "^1.30.0",
135
+ "react-countup": "^6.5.3",
136
+ "react-draggable": "^4.5.0",
137
+ "react-fast-marquee": "^1.6.5",
138
+ "react-highlight-words": "^0.21.0",
139
+ "react-icons": "^5.6.0",
140
+ "react-infinite-scroll-component": "^7.2.0",
141
+ "react-sticky-box": "^2.0.5",
142
+ "runes2": "^1.1.4",
143
+ "@996-design/996-icons-svg": "^1.0.0"
100
144
  },
101
145
  "description": "Public React component and theme entry point for 996 Design",
102
146
  "keywords": [
@@ -114,13 +158,9 @@
114
158
  "sideEffects": [
115
159
  "*.css"
116
160
  ],
117
- "scripts": {
118
- "check": "tsc -p tsconfig.json && bun -e \"await import('./src/index.ts')\" && bun ../../scripts/check-996-design-source-parity.ts && bun ../../scripts/check-996-design-toolchain-parity.ts && bun ../../scripts/check-996-design-demo-parity.ts && bun ../../scripts/check-996-design-demo-copy.ts && bun ../../scripts/check-996-design-brand-boundary.ts && bun ../../scripts/check-996-design-component-coverage.ts && bun ../../scripts/check-996-design-architecture.ts && bun ../../scripts/check-996-design-publish.ts",
119
- "check:browser": "node ../../scripts/check-996-design-browser.mjs",
120
- "build": "bun ../../scripts/build-996-design-source-package.ts",
121
- "dev": "vite --config demo/vite.config.ts --host 0.0.0.0 --port 5174 --strictPort",
122
- "build:demo": "vite build --config demo/vite.config.ts",
123
- "ux:qa": "bun scripts/run-ux-crop-qa.ts",
124
- "ux:rect": "bun scripts/run-ux-rect-qa.ts"
161
+ "packageManager": "pnpm@9.15.0",
162
+ "repository": {
163
+ "type": "git",
164
+ "url": "git+ssh://git@gitlab.asdnc.cn/996-design/996-ui.git"
125
165
  }
126
- }
166
+ }