-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 2.06 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
74
75
76
77
{
"name": "cc-gram",
"version": "1.1.0",
"description": "🖼 A CSS & Canvas Instagram filters based on CSSgram",
"type": "module",
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"packageManager": "[email protected]",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.esm.js",
"require": "./dist/index.umd.js"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript",
"type-check": "tsc --noEmit",
"test": "vitest __tests__",
"test:coverage": "vitest run __tests__ --coverage",
"lint": "eslint --fix --ignore-path .gitignore --ext .js,.ts src",
"prepublishOnly": "pnpm build",
"release": "sh scripts/release.sh",
"demo:dev": "pnpm -C demo dev"
},
"keywords": [
"image",
"filter",
"css",
"canvas",
"css-filter",
"canvas-instagram-filter",
"instagram",
"cssgram"
],
"author": "Michael Wang 汪東陽 <[email protected]> (https://github.com/EastSun5566)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EastSun5566/cc-gram"
},
"homepage": "https://eastsun5566.github.io/cc-gram/",
"bugs": {
"url": "https://github.com/EastSun5566/cc-gram/issues"
},
"husky": {
"hooks": {
"pre-commit": "pnpm lint"
}
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.1.0",
"@rollup/plugin-typescript": "^9.0.2",
"@types/offscreencanvas": "^2019.7.0",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"@vitest/coverage-c8": "^0.25.6",
"babel-eslint": "^10.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"husky": "^3.1.0",
"jsdom": "^20.0.3",
"rimraf": "^3.0.2",
"rollup": "^3.2.5",
"rollup-plugin-filesize": "^9.1.2",
"tslib": "^2.4.1",
"typescript": "^4.8.4",
"vitest": "^0.25.6"
}
}