forked from typewriter-editor/typewriter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.7 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
{
"name": "typewriter-editor",
"version": "0.7.4",
"description": "A rich text editor using the Delta format with decorations and rendered with a tiny virtual dom",
"keywords": [
"typewriter",
"rich text editor",
"wysiwyg",
"svelte",
"delta"
],
"scripts": {
"build": "tsc && webpack && cp src/*.svelte lib/",
"start": "webpack serve --config webpack.dev.config.js",
"dev": "tsc --watch",
"prepublishOnly": "npm run build",
"test": "TS_NODE_PROJECT=test/tsconfig.json mocha",
"tdd": "TS_NODE_PROJECT=test/tsconfig.json mocha -w --reporter progress"
},
"license": "MIT",
"main": "lib/index.js",
"type": "module",
"directories": {
"lib": "lib",
"src": "src",
"doc": "docs",
"example": "examples",
"test": "test"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/typewriter-editor/typewriter.git"
},
"dependencies": {
"@popperjs/core": "^2.11.2",
"@typewriter/document": "^0.7.0"
},
"peerDependencies": {
"svelte": "3.x"
},
"devDependencies": {
"@pyoner/svelte-types": "^3.4.4-2",
"@types/chai": "^4.3.0",
"@types/fast-diff": "^1.2.0",
"@types/mocha": "^9.1.0",
"chai": "^4.3.6",
"chai-exclude": "^2.1.0",
"jsdom": "^19.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^9.2.0",
"raw-loader": "^4.0.2",
"svelte": "^3.46.4",
"svelte-loader": "^3.1.2",
"svelte-routing": "^1.6.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}