-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.65 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.65 KB
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
{
"name": "graphim",
"version": "1.0.2",
"description": "Light and fast library for image effect.",
"main": "build/commonjs/src/index.js",
"module": "build/es/src/index.js",
"scripts": {
"build": "rollup --config",
"start": "rollup --config --watch",
"start:example": "http-server",
"lint:prettier": "prettier \"./src/**/*.ts\"",
"lint:eslint": "eslint \"./src/**/*.ts\"",
"lint:fix": "prettier \"./src/**/*.ts\" --write & eslint \"./src/**/*.ts\" --fix",
"docs": "typedoc --out ./docs/ ./src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fogrexon/Graphim.git"
},
"keywords": [
"shader",
"image-effect"
],
"author": "Fogrexon",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fogrexon/Graphim/issues"
},
"homepage": "https://github.com/Fogrexon/Graphim#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-typescript": "^8.2.5",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.1",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"rollup": "^2.56.2",
"rollup-plugin-glslify": "^1.2.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^4.0.1",
"tslib": "^2.3.1",
"typedoc": "^0.22.10",
"typescript": "^4.3.5"
},
"dependencies": {
"uuid": "^8.3.2"
}
}