This repository was archived by the owner on Apr 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.56 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.56 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"version": "1.0.0-alpha.0",
"author": "Community for NL Design System",
"description": "Stencil web components bundle based on the NL Design System architecture",
"license": "EUPL-1.2",
"name": "@minbzk/web-components-stencil",
"keywords": [
"nl-design-system"
],
"private": true,
"main": "dist/index.cjs.js",
"module": "dist/custom-elements/index.js",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"types": "dist/custom-elements/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/yyyy/yyyy.esm.js",
"files": [
"dist/",
"loader/"
],
"repository": {
"type": "git+ssh",
"url": "git@github.com:nl-design-system/example.git"
},
"scripts": {
"prebuild": "npm run clean",
"build": "npm-run-all build:**",
"build:stencil": "stencil build",
"build:typescript": "tsc",
"clean": "rimraf dist/",
"start": "stencil build --dev --watch --serve",
"watch": "npm-run-all --parallel watch:**",
"watch:stencil": "chokidar --follow-symlinks --initial --command 'npm run build:stencil' '../../components/**/*.(js|jsx|ts|tsx)'",
"generate": "stencil generate"
},
"devDependencies": {
"@minbzk/components": "workspace:*",
"@stencil/react-output-target": "0.3.1",
"@stencil/sass": "2.0.0",
"@types/jest": "29.0.0",
"chokidar-cli": "3.0.0",
"node-sass-package-importer": "5.3.2",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2"
},
"dependencies": {
"@stencil/core": "3.1.0"
}
}