-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 718 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "icon-library-example",
"version": "1.0.0",
"description": "> TODO: description",
"private": true,
"keywords": [
"icon",
"library",
"example"
],
"author": "Alexander Weigelt <webdesign@alexander-weigelt.de>",
"license": "ISC",
"scripts": {
"dev": "lerna run dev",
"build": "lerna run build --stream",
"preview": "lerna run preview",
"publish": "lerna publish --no-private",
"test": "lerna run test"
},
"workspaces": [
"packages/*",
"example/*"
],
"dependencies": {},
"devDependencies": {
"lerna": "^7.1.5"
},
"engines": {
"node": ">=18.18"
}
}