-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "subpixel-rendering",
"version": "1.0.0",
"description": "An approach to antialiasing via conservative rasterisation and analytical area computation",
"main": "build/index.js",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"prepare": "husky install",
"start": "webpack serve --open --config webpack.config.js",
"build": "webpack --config webpack.config.js --mode=production",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --config .prettierrc src/**/*.ts --write"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run format && npm run build"
}
},
"author": "Andrew Lowndes",
"license": "MIT",
"devDependencies": {
"@types/earcut": "^2.1.2",
"@types/opentype.js": "^1.3.6",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"earcut": "^2.2.4",
"gl-matrix": "^3.4.3",
"opentype.js": "^1.3.4"
}
}