-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.53 KB
/
package.json
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
{
"name": "kiwicomponents",
"version": "0.5.9",
"description": "An SDK for web browsers.",
"main": "./dist/js/bundle.js",
"unpkg": "./dist/js/bundle.js",
"jsdelivr": "./dist/js/bundle.js",
"module": "./dist/js/esm-bundle.js",
"types": "./dist/types/index.bundle.d.ts",
"scripts": {
"lint:fix": "prettier \"src/**/*.js\" --write && eslint \"src/**/*.js\" --fix",
"test": "npm run build:vite && npx vitest run",
"build": "npm run lint:fix && rimraf dist && npm run build:vite && npm run test && npm run build:types && npm run build:storybook",
"build:vite": "vite build",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir ./dist/types/",
"build:storybook": "storybook build -o ./dist/storybook",
"start": "storybook dev -p 6006",
"start:storybook": "storybook dev -p 6006",
"start:vanilla": "npx vite serve"
},
"author": "Henrik Olofsson",
"license": "MIT",
"keywords": [
"browser-sdk",
"web-components",
"window-management",
"window",
"toast",
"notifications",
"tooltip",
"context-menu",
"kiwi",
"kiwi-components",
"web-sdk"
],
"devDependencies": {
"@storybook/addon-essentials": "^7.4.4",
"@storybook/html-vite": "^7.4.4",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"jest-image-snapshot": "^4.3.0",
"prettier": "^2.2.1",
"puppeteer": "^21.3.5",
"rimraf": "^3.0.1",
"sass": "^1.54.9",
"storybook": "^7.4.4",
"typescript": "^4.5.5",
"vite": "^4.4.9",
"vitest": "^0.34.5"
}
}