@univerjs/icons 0.1.29 → 0.1.30
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.js +1 -1
- package/package.json +29 -29
package/package.json
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
"name": "@univerjs/icons",
|
|
3
|
+
"version": "0.1.30",
|
|
4
|
+
"description": "React icons used by Univer.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"files": [
|
|
7
7
|
"dist/",
|
|
8
8
|
"esm/"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
}
|
|
9
|
+
],
|
|
10
|
+
"main": "dist/index.js",
|
|
11
|
+
"module": "esm/index.js",
|
|
12
|
+
"sideEffects": false,
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "yarn build:esm && yarn build:cjs",
|
|
15
|
+
"build:cjs": "ncc build src/index.ts -o dist -m -e react",
|
|
16
|
+
"build:esm": "tsc --module ES6 --outDir esm"
|
|
17
|
+
},
|
|
18
|
+
"peerDependencies": {
|
|
19
|
+
"react": "*",
|
|
20
|
+
"react-dom": "*"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@types/react": "^17.0.0",
|
|
24
|
+
"@vercel/ncc": "^0.38.1",
|
|
25
|
+
"camelcase": "^7.0.1",
|
|
26
|
+
"cross-env": "^7.0.3",
|
|
27
|
+
"gulp": "^4.0.2",
|
|
28
|
+
"gulp-filter": "^7.0.0",
|
|
29
|
+
"gulp-rename": "^2.0.0",
|
|
30
|
+
"typescript": "^4.1.3"
|
|
31
|
+
}
|
|
32
|
+
}
|