-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.83 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
{
"name": "presenter",
"version": "0.3.0",
"description": "A JavaScript presentation library",
"main": "dist/presenter.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"require": "./dist/presenter.js",
"types": "./dist/src/index.d.ts"
},
"./export": {
"require": "./dist/presenter-export.js",
"types": "./dist/src/export/index.d.ts"
},
"./morph": {
"require": "./dist/presenter-morph.js",
"types": "./dist/src/morph/index.d.ts"
},
"./code": {
"require": "./dist/presenter-code.js",
"types": "./dist/src/code/index.d.ts"
}
},
"files": [
"./dist/"
],
"scripts": {
"build": "NODE_ENV=production webpack",
"watch": "NODE_ENV=development webpack --watch",
"prettier": "prettier . --write --ignore-unknown",
"prepare": "husky",
"test": "jest",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brianyu28/presenter.git"
},
"author": "Brian Yu <[email protected]>",
"bugs": {
"url": "https://github.com/brianyu28/presenter/issues"
},
"homepage": "https://github.com/brianyu28/presenter#readme",
"license": "GPL-3.0-or-later",
"dependencies": {
"animejs": "^3.2.2",
"flubber": "^0.4.2",
"html-to-image": "^1.11.11"
},
"devDependencies": {
"@types/animejs": "^3.1.12",
"@types/flubber": "^0.4.0",
"@types/jest": "^29.5.14",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown",
"jest --findRelatedTests --passWithNoTests"
]
}
}