-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.58 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.58 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@linkurious/ogma-styles",
"version": "0.1.2",
"description": "Ogma styling themes",
"main": "dist/index.mjs",
"browser": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./midsummer-night": {
"types": "./dist/midsummer-night.d.ts",
"import": "./dist/midsummer-night.mjs",
"require": "./dist/midsummer-night.js"
},
"./afternoon-nap": {
"types": "./dist/afternoon-nap.d.ts",
"import": "./dist/afternoon-nap.mjs",
"require": "./dist/afternoon-nap.js"
},
"./morning-breeze": {
"types": "./dist/morning-breeze.d.ts",
"import": "./dist/morning-breeze.mjs",
"require": "./dist/morning-breeze.js"
},
"./colors": {
"types": "./dist/colors.d.ts",
"import": "./dist/colors.mjs",
"require": "./dist/colors.js"
}
},
"scripts": {
"test": "",
"test:unit": "",
"build": "npm run bundle && npm run types && npm run previews",
"previews": "tsx scripts/generate-color-previews.ts",
"bundle": "rollup -c",
"lint": "eslint src",
"types": "tsc -p tsconfig.json --emitDeclarationOnly",
"lint:ci": "eslint -f checkstyle -o reports/checkstyle.xml src/*.ts",
"postversion": "sync_versions",
"bump:patch": "npm version --no-git-tag-version patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Linkurious/ogma-styles.git"
},
"keywords": [
"ogma",
"graph visualization",
"styles",
"themes"
],
"author": "Linkurious SAS",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Linkurious/ogma-styles/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/Linkurious/ogma-styles#readme",
"optionalDependencies": {
"@linkurious/ogma": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.14.5",
"@linkurious/code-tools": "0.0.15",
"@linkurious/eslint-config-ogma": "^1.0.10",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-typescript": "^8.2.5",
"eslint": "^8.57.0",
"rollup": "^2.56.3",
"rollup-plugin-terser": "^7.0.2",
"tsx": "4.20.5",
"typescript": "5.4.3"
},
"eslintConfig": {
"extends": [
"@linkurious/eslint-config-ogma"
]
},
"prettier": {
"trailingComma": "none",
"singleQuote": true,
"arrowParens": "avoid"
}
}