@leechanyong/ispark-ui 0.5.13 → 0.5.14
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/dist/index.d.ts +93 -0
- package/dist/ispark-ui.cjs +264 -264
- package/dist/ispark-ui.css +1 -1
- package/dist/ispark-ui.js +3277 -3042
- package/package.json +98 -98
package/package.json
CHANGED
|
@@ -1,98 +1,98 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@leechanyong/ispark-ui",
|
|
3
|
-
"version": "0.5.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"description": "Ispark Design System UI Library (Vue 3 + Vite + Storybook)",
|
|
6
|
-
"author": "box3101 <tony.at.cp@gmail.com>",
|
|
7
|
-
"license": "MIT",
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/box3101/ispark-ui.git"
|
|
11
|
-
},
|
|
12
|
-
"publishConfig": {
|
|
13
|
-
"registry": "https://registry.npmjs.org",
|
|
14
|
-
"access": "public"
|
|
15
|
-
},
|
|
16
|
-
"files": [
|
|
17
|
-
"dist",
|
|
18
|
-
"README.md",
|
|
19
|
-
"CHANGELOG.md",
|
|
20
|
-
"LICENSE"
|
|
21
|
-
],
|
|
22
|
-
"main": "./dist/ispark-ui.cjs",
|
|
23
|
-
"module": "./dist/ispark-ui.js",
|
|
24
|
-
"types": "./dist/index.d.ts",
|
|
25
|
-
"exports": {
|
|
26
|
-
".": {
|
|
27
|
-
"types": "./dist/index.d.ts",
|
|
28
|
-
"import": "./dist/ispark-ui.js",
|
|
29
|
-
"require": "./dist/ispark-ui.cjs"
|
|
30
|
-
},
|
|
31
|
-
"./dist/ispark-ui.css": "./dist/ispark-ui.css",
|
|
32
|
-
"./style.css": "./dist/ispark-ui.css",
|
|
33
|
-
"./styles": "./dist/ispark-ui.css"
|
|
34
|
-
},
|
|
35
|
-
"sideEffects": [
|
|
36
|
-
"**/*.css",
|
|
37
|
-
"**/*.scss"
|
|
38
|
-
],
|
|
39
|
-
"scripts": {
|
|
40
|
-
"dev": "vite",
|
|
41
|
-
"build": "npm run build:icons && vue-tsc --noEmit && vite build",
|
|
42
|
-
"build:icons": "node scripts/build-icons.mjs",
|
|
43
|
-
"preview": "vite preview",
|
|
44
|
-
"storybook": "storybook dev -p 6006",
|
|
45
|
-
"build-storybook": "storybook build",
|
|
46
|
-
"test": "vitest run",
|
|
47
|
-
"test:watch": "vitest",
|
|
48
|
-
"test:storybook": "test-storybook --url http://localhost:6006",
|
|
49
|
-
"test:storybook:ci": "concurrently -k -s first -n SB,TEST -c magenta,blue \"http-server storybook-static --port 6006 --silent\" \"wait-on tcp:6006 && test-storybook --url http://localhost:6006\"",
|
|
50
|
-
"test:all": "npm run test && npm run build-storybook && npm run test:storybook:ci",
|
|
51
|
-
"typecheck": "vue-tsc --noEmit",
|
|
52
|
-
"prepare": "npm run build",
|
|
53
|
-
"prepublishOnly": "npm run build"
|
|
54
|
-
},
|
|
55
|
-
"peerDependencies": {
|
|
56
|
-
"@internationalized/date": "^3.5.0",
|
|
57
|
-
"@lucide/vue": ">=1.0.0",
|
|
58
|
-
"radix-vue": "^1.9.0",
|
|
59
|
-
"vue": "^3.5.0"
|
|
60
|
-
},
|
|
61
|
-
"devDependencies": {
|
|
62
|
-
"@internationalized/date": "^3.12.1",
|
|
63
|
-
"@lucide/vue": "^1.17.0",
|
|
64
|
-
"@storybook/addon-essentials": "^8.6.14",
|
|
65
|
-
"@storybook/test": "^8.6.14",
|
|
66
|
-
"@storybook/test-runner": "^0.19.0",
|
|
67
|
-
"@storybook/vue3-vite": "^8.6.14",
|
|
68
|
-
"@testing-library/vue": "^8.1.0",
|
|
69
|
-
"@vitejs/plugin-vue": "^5.2.1",
|
|
70
|
-
"concurrently": "^9.0.0",
|
|
71
|
-
"http-server": "^14.1.1",
|
|
72
|
-
"jsdom": "^25.0.1",
|
|
73
|
-
"radix-vue": "^1.9.0",
|
|
74
|
-
"sass-embedded": "^1.83.4",
|
|
75
|
-
"storybook": "^8.6.14",
|
|
76
|
-
"typescript": "~5.6.3",
|
|
77
|
-
"vite": "^6.0.7",
|
|
78
|
-
"vite-plugin-dts": "^4.5.4",
|
|
79
|
-
"vitest": "^2.1.8",
|
|
80
|
-
"vue": "^3.5.13",
|
|
81
|
-
"vue-tsc": "^2.2.0",
|
|
82
|
-
"wait-on": "^8.0.1"
|
|
83
|
-
},
|
|
84
|
-
"dependencies": {
|
|
85
|
-
"@tiptap/extension-code-block-lowlight": "^3.25.0",
|
|
86
|
-
"@tiptap/extension-link": "^3.25.0",
|
|
87
|
-
"@tiptap/extension-placeholder": "^3.25.0",
|
|
88
|
-
"@tiptap/extension-table": "^3.25.0",
|
|
89
|
-
"@tiptap/extension-table-cell": "^3.25.0",
|
|
90
|
-
"@tiptap/extension-table-header": "^3.25.0",
|
|
91
|
-
"@tiptap/extension-table-row": "^3.25.0",
|
|
92
|
-
"@tiptap/pm": "^3.25.0",
|
|
93
|
-
"@tiptap/starter-kit": "^3.25.0",
|
|
94
|
-
"@tiptap/vue-3": "^3.25.0",
|
|
95
|
-
"lowlight": "^3.3.0",
|
|
96
|
-
"tiptap-markdown": "^0.9.0"
|
|
97
|
-
}
|
|
98
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@leechanyong/ispark-ui",
|
|
3
|
+
"version": "0.5.14",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Ispark Design System UI Library (Vue 3 + Vite + Storybook)",
|
|
6
|
+
"author": "box3101 <tony.at.cp@gmail.com>",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/box3101/ispark-ui.git"
|
|
11
|
+
},
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"registry": "https://registry.npmjs.org",
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md",
|
|
19
|
+
"CHANGELOG.md",
|
|
20
|
+
"LICENSE"
|
|
21
|
+
],
|
|
22
|
+
"main": "./dist/ispark-ui.cjs",
|
|
23
|
+
"module": "./dist/ispark-ui.js",
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"exports": {
|
|
26
|
+
".": {
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"import": "./dist/ispark-ui.js",
|
|
29
|
+
"require": "./dist/ispark-ui.cjs"
|
|
30
|
+
},
|
|
31
|
+
"./dist/ispark-ui.css": "./dist/ispark-ui.css",
|
|
32
|
+
"./style.css": "./dist/ispark-ui.css",
|
|
33
|
+
"./styles": "./dist/ispark-ui.css"
|
|
34
|
+
},
|
|
35
|
+
"sideEffects": [
|
|
36
|
+
"**/*.css",
|
|
37
|
+
"**/*.scss"
|
|
38
|
+
],
|
|
39
|
+
"scripts": {
|
|
40
|
+
"dev": "vite",
|
|
41
|
+
"build": "npm run build:icons && vue-tsc --noEmit && vite build",
|
|
42
|
+
"build:icons": "node scripts/build-icons.mjs",
|
|
43
|
+
"preview": "vite preview",
|
|
44
|
+
"storybook": "storybook dev -p 6006",
|
|
45
|
+
"build-storybook": "storybook build",
|
|
46
|
+
"test": "vitest run",
|
|
47
|
+
"test:watch": "vitest",
|
|
48
|
+
"test:storybook": "test-storybook --url http://localhost:6006",
|
|
49
|
+
"test:storybook:ci": "concurrently -k -s first -n SB,TEST -c magenta,blue \"http-server storybook-static --port 6006 --silent\" \"wait-on tcp:6006 && test-storybook --url http://localhost:6006\"",
|
|
50
|
+
"test:all": "npm run test && npm run build-storybook && npm run test:storybook:ci",
|
|
51
|
+
"typecheck": "vue-tsc --noEmit",
|
|
52
|
+
"prepare": "npm run build",
|
|
53
|
+
"prepublishOnly": "npm run build"
|
|
54
|
+
},
|
|
55
|
+
"peerDependencies": {
|
|
56
|
+
"@internationalized/date": "^3.5.0",
|
|
57
|
+
"@lucide/vue": ">=1.0.0",
|
|
58
|
+
"radix-vue": "^1.9.0",
|
|
59
|
+
"vue": "^3.5.0"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@internationalized/date": "^3.12.1",
|
|
63
|
+
"@lucide/vue": "^1.17.0",
|
|
64
|
+
"@storybook/addon-essentials": "^8.6.14",
|
|
65
|
+
"@storybook/test": "^8.6.14",
|
|
66
|
+
"@storybook/test-runner": "^0.19.0",
|
|
67
|
+
"@storybook/vue3-vite": "^8.6.14",
|
|
68
|
+
"@testing-library/vue": "^8.1.0",
|
|
69
|
+
"@vitejs/plugin-vue": "^5.2.1",
|
|
70
|
+
"concurrently": "^9.0.0",
|
|
71
|
+
"http-server": "^14.1.1",
|
|
72
|
+
"jsdom": "^25.0.1",
|
|
73
|
+
"radix-vue": "^1.9.0",
|
|
74
|
+
"sass-embedded": "^1.83.4",
|
|
75
|
+
"storybook": "^8.6.14",
|
|
76
|
+
"typescript": "~5.6.3",
|
|
77
|
+
"vite": "^6.0.7",
|
|
78
|
+
"vite-plugin-dts": "^4.5.4",
|
|
79
|
+
"vitest": "^2.1.8",
|
|
80
|
+
"vue": "^3.5.13",
|
|
81
|
+
"vue-tsc": "^2.2.0",
|
|
82
|
+
"wait-on": "^8.0.1"
|
|
83
|
+
},
|
|
84
|
+
"dependencies": {
|
|
85
|
+
"@tiptap/extension-code-block-lowlight": "^3.25.0",
|
|
86
|
+
"@tiptap/extension-link": "^3.25.0",
|
|
87
|
+
"@tiptap/extension-placeholder": "^3.25.0",
|
|
88
|
+
"@tiptap/extension-table": "^3.25.0",
|
|
89
|
+
"@tiptap/extension-table-cell": "^3.25.0",
|
|
90
|
+
"@tiptap/extension-table-header": "^3.25.0",
|
|
91
|
+
"@tiptap/extension-table-row": "^3.25.0",
|
|
92
|
+
"@tiptap/pm": "^3.25.0",
|
|
93
|
+
"@tiptap/starter-kit": "^3.25.0",
|
|
94
|
+
"@tiptap/vue-3": "^3.25.0",
|
|
95
|
+
"lowlight": "^3.3.0",
|
|
96
|
+
"tiptap-markdown": "^0.9.0"
|
|
97
|
+
}
|
|
98
|
+
}
|