-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.77 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
{
"name": "@le-pepe/snow-effect",
"version": "0.1.13",
"description": "A web component built with StencilJS that generates falling snowflakes, providing an easy-to-use snow effect for any website.",
"author": "LePepe <[email protected]>",
"homepage": "https://snoweffect.xyz",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/snow-effect/snow-effect.esm.js",
"exports": {
".": {
"import": "./dist/snow-effect/snow-effect.esm.js",
"require": "./dist/snow-effect/snow-effect.cjs.js"
},
"./snow-effect": {
"import": "./dist/components/snow-effect.js",
"types": "./dist/components/snow-effect.d.ts"
},
"./loader": {
"import": "./loader/index.js",
"require": "./loader/index.cjs",
"types": "./loader/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/le-pepe/snow-effect.git"
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"changelog": "changelogen --release",
"push": "git push --follow-tags"
},
"devDependencies": {
"@stencil/core": "^4.7.0",
"@stencil/react-output-target": "^0.7.1",
"@stencil/vue-output-target": "^0.8.9",
"@types/jest": "^29.5.6",
"@types/node": "^16.18.11",
"changelogen": "^0.5.7",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"puppeteer": "^21.9.0"
},
"publishConfig": {
"access": "public"
},
"license": "MIT"
}