-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
77 lines (77 loc) · 2.09 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": "mdx-deck-live-code",
"version": "1.0.1",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.es.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"dev": "microbundle watch",
"build": "microbundle build",
"example": "cd example && npm start",
"start": "npm-run-all --parallel dev example",
"setup-dev": "yarn install && yarn link && cd example && yarn install && yarn link mdx-deck-live-code",
"format": "prettier --write '{src/**/*.{ts,tsx},README.md}'",
"format:ci": "prettier --list-different '{src/**/*.{ts,tsx},README.md}'",
"lint": "npm-run-all --parallel lint:**",
"lint:src": "tslint --project tsconfig.json --config tslint.json",
"lint:readme": "markdownlint README.md",
"typecheck": "tsc --noEmit",
"ok": "yarn typecheck && yarn lint && yarn format:ci && yarn build",
"prepublishOnly": "yarn ok"
},
"dependencies": {
"react-live": "^1.11.0"
},
"devDependencies": {
"@types/react": "^16.4.16",
"@types/styled-components": "^4.0.1",
"husky": "^1.1.1",
"markdownlint-cli": "^0.13.0",
"microbundle": "^0.9.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.3",
"pretty-quick": "^1.7.0",
"styled-components": "^4.1.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-react": "^3.6.0",
"typescript": "^3.1.1"
},
"peerDependencies": {
"mdx-deck": "^1.7.7",
"react": ">=15.0.0",
"styled-components": ">=3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"author": "Jeppe Reinhold <jeppereinhold@gmail.com> (https://reinhold.is)",
"homepage": "https://github.com/JReinhold/mdx-deck-live-code#readme",
"repository": {
"type": "git",
"url": "https://github.com/JReinhold/mdx-deck-live-code.git"
},
"bugs": {
"url": "https://github.com/JReinhold/mdx-deck-live-code/issues"
},
"license": "NoHarm-draft",
"description": "A component for mdx-deck for live coding directly in your slides. 🤯",
"keywords": [
"mdx",
"mdx-deck",
"slides",
"react",
"reactjs",
"code",
"live",
"edit",
"playground"
]
}