-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.28 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@berkeley-gif/cal-adapt-svelte-components",
"description": "Cal-Adapt UI component library built with SvelteJS.",
"keywords": [
"svelte",
"cal-adapt",
"component-library",
"carbon-design"
],
"version": "2.0.0",
"license": "BSD-3-Clause",
"contributors": [
"Chris Henrick <[email protected]> (https://clhenrick.io)"
],
"svelte": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"homepage": "https://cal-adapt-svelte-components.netlify.app/",
"repository": {
"type": "git",
"url": "https://github.com/berkeley-gif/cal-adapt-svelte-components.git"
},
"bugs": "https://github.com/berkeley-gif/cal-adapt-svelte-components/issues",
"scripts": {
"start": "npm run dev -- --open --port 3000",
"dev": "vite dev",
"build": "vite build && npm run package",
"preview": "vite preview",
"prepare": "svelte-kit sync && husky install",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"test": "vitest",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"lint:styles": "stylelint \"**/*.{css,scss,sass,svelte}\" --cache --ignore-path .gitignore --fix --allow-empty-input",
"format": "prettier --plugin-search-dir . --write .",
"sass:check": "sass --load-path=./node_modules src/styles/main.scss > /dev/null"
},
"peerDependencies": {
"svelte": "^3.54.0"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.5.0",
"@sveltejs/package": "^2.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/svelte": "^3.2.2",
"@types/cookie": "^0.5.1",
"@types/d3-geo": "^3.0.3",
"@types/geojson": "^7946.0.8",
"@types/lodash": "^4.14.182",
"@types/lodash.throttle": "^4.1.7",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"carbon-components": "^10.57.0",
"carbon-components-svelte": "^0.73.5",
"carbon-icons-svelte": "^11.4.0",
"d3-geo": "^2.0.2",
"d3-tile": "^1.0.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.3",
"jsdom": "^21.1.1",
"lint-staged": "^12.3.7",
"lodash.throttle": "^4.1.1",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"publint": "^0.1.9",
"sass": "^1.53.0",
"stylelint": "^14.16.1",
"stylelint-config-carbon": "^1.12.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-prettier-scss": "^0.0.1",
"svelte-check": "^3.2.0",
"tslib": "^2.4.1",
"typescript": "^5.0.4",
"vite": "^4.2.0",
"vitest": "^0.25.3"
},
"engines": {
"node": ">=16.20.0"
},
"lint-staged": {
"*.{js,ts,svelte}": "eslint --cache",
"*.{css,scss,svelte}": "stylelint --allow-empty-input",
"*.{js,svelte,jsx,ts,tsx,md,html,css,scss}": "prettier --write"
},
"exports": {
".": {
"types": [
"./dist/index.d.ts",
"./dist/types.d.ts",
"./dist/modules.d.ts"
],
"svelte": "./dist/index.js"
}
}
}