-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.03 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
{
"name": "let-it-go",
"version": "1.1.0",
"type": "module",
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"packageManager": "[email protected]",
"description": "❄️ Let your website snow instantly",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"test": "vitest ./tests",
"type-check": "tsc --noEmit",
"type-check:watch": "pnpm type-check --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "rimraf dist && pnpm build:types && pnpm build:js",
"lint": "eslint --fix --ignore-path .gitignore --ext .js,.ts src",
"prepublishOnly": "pnpm build",
"release": "pnpx standard-version && git push --follow-tags && pnpm publish",
"demo:dev": "pnpm -C demo dev",
"demo:deploy": "pnpm -C demo run deploy"
},
"keywords": [
"let-it-go",
"snow",
"snowfall",
"canvas"
],
"author": "Michael Wang 汪東陽 <[email protected]> (https://github.com/EastSun5566)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EastSun5566/let-it-go"
},
"homepage": "https://eastsun5566.github.io/let-it-go/",
"husky": {
"hooks": {
"pre-commit": "pnpm lint"
}
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-terser": "^0.2.1",
"@types/offscreencanvas": "^2019.7.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.30.0",
"husky": "^8.0.3",
"jsdom": "^25.0.1",
"rimraf": "^3.0.2",
"rollup": "^3.29.5",
"rollup-plugin-filesize": "^9.1.2",
"typescript": "^4.9.5",
"vitest": "^2.1.5"
}
}