-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
73 lines (73 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
70
71
72
73
{
"name": "qwik-lottie",
"version": "0.1.8",
"description": "Lottie Animation View for Qwik",
"keywords": [
"lottie",
"animation",
"qwik",
"after-effects",
"advanced"
],
"author": "John Reemar Dela Rosa <[email protected]>",
"license": "MIT",
"main": "./lib/index.qwik.cjs",
"qwik": "./lib/index.qwik.mjs",
"module": "./lib/index.qwik.mjs",
"types": "./lib-types/index.d.ts",
"exports": {
".": {
"import": "./lib/index.qwik.mjs",
"require": "./lib/index.qwik.cjs"
}
},
"files": [
"lib",
"lib-types"
],
"engines": {
"node": ">=15.0.0"
},
"private": false,
"type": "module",
"scripts": {
"build": "qwik build",
"build.lib": "vite build --mode lib",
"build.types": "tsc --emitDeclarationOnly",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"release": "npm run build && np --any-branch",
"publish": "npm run build && npm publish --access public",
"start": "vite --open --mode ssr",
"qwik": "qwik"
},
"devDependencies": {
"@builder.io/qwik": "1.2.12",
"@types/eslint": "8.44.2",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "6.7.2",
"@typescript-eslint/parser": "6.7.2",
"eslint": "8.49.0",
"eslint-plugin-qwik": "^1.2.12",
"node-fetch": "3.3.2",
"np": "^8.0.4",
"prettier": "3.0.3",
"typescript": "5.2.2",
"vite": "4.4.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qwik-design/qwik-lottie"
},
"bugs": {
"url": "https://github.com/qwik-design/qwik-lottie/issues"
},
"homepage": "https://github.com/qwik-design/qwik-lottie#readme",
"dependencies": {
"lottie-web": "^5.9.6",
"qwik": "^1.0.57"
}
}