98-components 0.1.1
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 +67 -0
- package/dist/98-components.js +1263 -0
- package/dist/98-components.umd.cjs +612 -0
- package/dist/style.css +1 -0
- package/package.json +30 -0
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "98-components",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist"
|
|
7
|
+
],
|
|
8
|
+
"main": "./dist/98-components.umd.cjs",
|
|
9
|
+
"module": "./dist/98-components.js",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./dist/98-components.js",
|
|
13
|
+
"require": "./dist/98-components.umd.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"98.css": "^0.1.20"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"vite": "^5.0.0"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"dev": "pnpm run build:icons && vite serve --config vite.test.config.js",
|
|
24
|
+
"build": "pnpm run build:icons && vite build",
|
|
25
|
+
"build:icons": "node scripts/build-icons.js",
|
|
26
|
+
"clean:icons": "node scripts/build-icons.js --clean",
|
|
27
|
+
"build:test": "pnpm run build:icons && vite build --config vite.build-test.config.js",
|
|
28
|
+
"preview": "vite preview"
|
|
29
|
+
}
|
|
30
|
+
}
|