-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
69 lines (69 loc) · 1.88 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
{
"name": "ldrs",
"version": "1.0.2",
"author": "Griffin Johnston",
"license": "MIT",
"description": "Tiny HTML and SVG loaders as web components",
"keywords": [
"uiball",
"loaders",
"loading animations",
"indeterminate loaders",
"spinners",
"loading",
"icon",
"waiting",
"custom elements",
"web components"
],
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"sideEffects": false,
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./*": "./dist/auto/*.js",
"./*.js": "./dist/auto/*.js"
},
"files": [
"dist"
],
"browserslist": [
"defaults"
],
"homepage": "https://uiball.com/ldrs",
"repository": {
"type": "git",
"url": "git+https://github.com/GriffinJohnston/ldrs.git"
},
"bugs": {
"url": "https://github.com/GriffinJohnston/ldrs/issues"
},
"scripts": {
"build:setup": "mkdir -p temp-ts-out/elements && cp src/elements/*.scss temp-ts-out/elements && rm -rf dist",
"build:cleanup": "rm -rf temp-ts-out",
"build:rollup": "npx rollup -c rollup.config.js",
"build": "npm test && npm run build:setup && npx tsc && npm run build:rollup && node utils/copyDefs && npm run build:cleanup",
"demo": "cp -r src/demos dist && http-server dist",
"test": "npx tsc --noEmit && node --loader tsx --test tests/*.test.ts"
},
"devDependencies": {
"@builder.io/mitosis-cli": "^0.3.14",
"@rollup/plugin-terser": "^0.4.4",
"cpy": "^10.1.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"http-server": "^14.1.1",
"postcss": "^8.4.31",
"prettier": "3.0.3",
"rollup": "^4.0.2",
"rollup-plugin-multi-input": "^1.4.1",
"rollup-plugin-node-externals": "^6.1.2",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.69.0",
"seedrandom": "^3.0.5",
"tsx": "^3.13.0",
"typescript": "^5.2.2"
}
}