-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.22 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
{
"name": "cds-design",
"version": "0.4.0",
"description": "Components library for Continuum Design System (CDS) by Verve",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cds-design/continuum.git"
},
"bugs": {
"url": "https://github.com/cds-design/continuum/issues"
},
"homepage": "https://github.com/cds-design/continuum#readme",
"keywords": [
"continuum",
"design system",
"components",
"web components",
"lit",
"lit-element",
"cds"
],
"type": "module",
"main": "./dist/continuum.js",
"exports": {
".": {
"import": "./dist/continuum.js",
"require": "./dist/continuum.cjs",
"types": "./types/src/index.d.ts"
},
"./dist/constants": {
"import": "./dist/constants.js",
"require": "./dist/constants.cjs",
"types": "./types/src/constants.d.ts"
},
"./dist/custom-elements.json": "./dist/custom-elements.json"
},
"files": [
"dist",
"types"
],
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"lint": "eslint src/**",
"prepublishOnly": "npm run build",
"preview": "vite preview"
},
"imports": {
"#WC": "./src/WC.ts",
"#globals.css": "./src/styles/globals.css.ts",
"#helpers": "./src/helpers/index.ts"
},
"maintainers": [
{
"name": "Rajaniraiyn R",
"email": "rajaniraiyn@gmail.com",
"url": "https://rajaniraiyn.github.io"
},
{
"name": "Tejaswini T",
"email": "teejaswan12@gmail.com",
"url": "https://teejaswan.github.io"
}
],
"types": "./types/src/index.d.ts",
"dependencies": {
"lit": "^2.8.0"
},
"devDependencies": {
"@cds-design/type-modifier": "*",
"@cds-design/vite-plugin-lit-postcss": "*",
"@types/react": "^18.2.20",
"autoprefixer": "^10.4.14",
"eslint": "^8.44.0",
"eslint-plugin-lit": "^1.8.3",
"eslint-plugin-lit-a11y": "4.1.0",
"eslint-plugin-wc": "^1.5.0",
"postcss-csso": "^6.0.1",
"postcss-lit": "^1.1.0",
"rollup-plugin-minify-html-literals-v3": "^1.3.3",
"terser": "^5.19.0",
"typescript": "^5.1.6",
"vite": "^4.4.3",
"vite-aliases": "^0.11.2",
"vite-plugin-cem": "^0.5.0",
"vite-plugin-dts": "^3.2.0"
}
}