-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
70 lines (70 loc) · 1.87 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
{
"name": "@papyrs/stylo",
"version": "0.0.45",
"description": "Another kind of rich text editor",
"author": "David Dal Busco",
"license": "MIT",
"homepage": "https://stylojs.com",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"jsnext:main": "dist/esm/index.js",
"types": "dist/types/interface.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/stylo/stylo.esm.js",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "stencil build",
"build:site": "npm run build && npm run copy:site",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test:watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"format": "prettier . --write",
"format:md": "prettier \"src/**/*.md\" --write",
"postbuild": "npm run format:md",
"copy:site": "node ./scripts/copy.site.js"
},
"devDependencies": {
"@stencil/core": "^3.2.0",
"@stencil/postcss": "^2.1.0",
"@stencil/sass": "^3.0.0",
"@stencil/store": "^2.0.4",
"@types/jest": "^27.0.3",
"autoprefixer": "^10.4.14",
"blob-polyfill": "^7.0.20220408",
"jest": "^27.0.3",
"jest-cli": "^27.4.5",
"mutation-observer": "^1.0.3",
"prettier": "^2.8.7",
"prettier-plugin-organize-imports": "^3.2.2",
"pretty-quick": "^3.1.3",
"puppeteer": "^19.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/papyrs/stylo.git"
},
"bugs": {
"url": "https://github.com/papyrs/stylo"
},
"keywords": [
"editor",
"rich text",
"wysiwyg"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@deckdeckgo/utils": "^5.1.0"
}
}