-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.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
{
"name": "candid",
"version": "0.2.6",
"description": "Candid is an unopinionated, frameworkless JavaScript library for building web applications.",
"keywords": [
"candid",
"vanillajs",
"frameworkless",
"web components",
"custom elements",
"browser",
"javasscript"
],
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"main": "./dist/candid.umd.js",
"module": "./dist/candid.es.js",
"exports": {
".": {
"import": "./dist/candid.es.js",
"require": "./dist/candid.umd.js"
}
},
"scripts": {
"dev": "vite",
"dev:gitpod": "APP_ENV=gitpod vite",
"build:lib": "vite build --config ./vite-dist.config.js && tsc",
"build:docs": "vite build",
"prepare": "npm run build:lib"
},
"devDependencies": {
"typescript": "^4.5.5",
"vite": "^2.7.13"
},
"repository": {
"type": "git",
"url": "https://github.com/danieldietrich/candid.git"
},
"homepage": "https://candid.link",
"bugs": "https://github.com/danieldietrich/candid/issues",
"author": {
"name": "Daniel Dietrich",
"email": "[email protected]",
"url": "https://danieldietrich.dev"
},
"funding": "https://github.com/sponsors/danieldietrich",
"license": "MIT"
}