-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.91 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
{
"name": "@oakstudios/mechanical-ragger",
"version": "0.5.0",
"description": "A layout tool that automatically rags long text by line",
"type": "module",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": "./index.js",
"./core": "./core.js",
"./react": "./react.js",
"./web-component": "./web-component.js",
"./web-component-auto-register": "./web-component-auto-register.js"
},
"engines": {
"node": ">=14.17.0"
},
"directories": {
"doc": "docs"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-node-resolve": "^13.0.6",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.37",
"babel-jest": "^27.4.2",
"jest": "^27.4.3",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.60.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"tslib": "^2.3.1",
"typescript": "^4.5.3"
},
"scripts": {
"build": "rm -rf dist/* && rollup --config",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/oakstudios/mechanical-ragger.git"
},
"author": "Oak Studios <info@oak.is> https://oak.is",
"license": "MIT",
"bugs": {
"url": "https://github.com/oakstudios/mechanical-ragger/issues"
},
"homepage": "https://github.com/oakstudios/mechanical-ragger#readme",
"keywords": [
"typesetting",
"typography"
]
}