-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 2.34 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "custom-uikit-svelte",
"version": "2.6.1",
"description": "Unofficial Svelte Component Library for the UIkit framework",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"svelte": "src/main.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cache:components-data": "node export-components-data.js",
"build": "npx browserslist@latest --update-db && npm run build:doc && rimraf dist && node export.js && rollup -c && node gentypes.js",
"build:doc": "npm run cache:components-data && node gendocmd.js && node gendocsvelte.js",
"build:preview": "rimraf docs/build && rollup --config rollup.preview.config.js",
"prepublishOnly": "npm run build && npm run build:doc",
"start": "sirv docs --host",
"dev": "rollup --config rollup.preview.config.js -w"
},
"files": [
"src/components",
"src/helpers",
"src/services",
"src/init.js",
"src/main.js",
"src/stores",
"dist"
],
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
},
"./package.json": "./package.json"
},
"peerDependencies": {
"svelte": "^3.0.0",
"uikit": "^3.5.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdellacqua/custom-uikit-svelte"
},
"bugs": {
"url": "https://github.com/cdellacqua/custom-uikit-svelte/issues"
},
"homepage": "https://github.com/cdellacqua/custom-uikit-svelte",
"keywords": [
"svelte",
"uikit"
],
"author": "Carlo Dell'Acqua",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@types/debounce": "^1.2.0",
"autoprefixer": "^9.8.6",
"browserslist": "^4.16.6",
"eslint": "^7.7.0",
"jsdoc": "^0.0.0",
"jsdoc-api": "^7.0.1",
"postcss": "^7.0.32",
"rimraf": "^3.0.2",
"rollup": "^2.45.2",
"rollup-plugin-livereload": "^1.3.0",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-svelte": "^5.0.3",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.42.1",
"sirv-cli": "^1.0.0",
"svelte": "^3.29.0",
"svelte-preprocess": "^4.1.1",
"uikit": "^3.5.7"
},
"dependencies": {
"caniuse-lite": "^1.0.30001285",
"debounce": "^1.2.0",
"leven": "^3.1.0"
}
}