ts-graphviz 1.2.3-dev.c2580f68b → 1.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +84 -84
package/package.json CHANGED
@@ -1,87 +1,87 @@
1
1
  {
2
- "name": "ts-graphviz",
3
- "version": "1.2.3-dev.c2580f68b",
4
- "author": "kamiazya <yuki@kamiazya.tech>",
5
- "description": "Graphviz library for TypeScript.",
6
- "homepage": "https://ts-graphviz.github.io/ts-graphviz/",
7
- "type": "module",
8
- "repository": {
9
- "type": "git",
10
- "url": "https://github.com/ts-graphviz/ts-graphviz.git"
2
+ "name": "ts-graphviz",
3
+ "version": "1.2.3",
4
+ "author": "kamiazya <yuki@kamiazya.tech>",
5
+ "description": "Graphviz library for TypeScript.",
6
+ "homepage": "https://ts-graphviz.github.io/ts-graphviz/",
7
+ "type": "module",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/ts-graphviz/ts-graphviz.git"
11
+ },
12
+ "keywords": [
13
+ "graphviz",
14
+ "dot"
15
+ ],
16
+ "bugs": {
17
+ "url": "https://github.com/ts-graphviz/ts-graphviz/issues"
18
+ },
19
+ "funding": {
20
+ "type": "github",
21
+ "url": "https://github.com/sponsors/kamiazya"
22
+ },
23
+ "main": "./lib/index.cjs",
24
+ "module": "./lib/index.js",
25
+ "types": "lib/index.d.ts",
26
+ "exports": {
27
+ ".": {
28
+ "import": "./lib/index.js",
29
+ "require": "./lib/index.cjs",
30
+ "types": "./lib/index.d.ts"
11
31
  },
12
- "keywords": [
13
- "graphviz",
14
- "dot"
15
- ],
16
- "bugs": {
17
- "url": "https://github.com/ts-graphviz/ts-graphviz/issues"
18
- },
19
- "funding": {
20
- "type": "github",
21
- "url": "https://github.com/sponsors/kamiazya"
22
- },
23
- "main": "./lib/index.cjs",
24
- "module": "./lib/index.js",
25
- "types": "lib/index.d.ts",
26
- "exports": {
27
- ".": {
28
- "import": "./lib/index.js",
29
- "require": "./lib/index.cjs",
30
- "types": "./lib/index.d.ts"
31
- },
32
- "./ast": {
33
- "import": "./lib/ast/index.js",
34
- "require": "./lib/ast/index.cjs",
35
- "types": "./lib/ast/index.d.ts"
36
- }
37
- },
38
- "imports": {
39
- "#lib/*": {
40
- "import": "./lib/*/index.js",
41
- "require": "./lib/*/index.cjs",
42
- "types": "./lib/*/index.d.ts"
43
- }
44
- },
45
- "license": "MIT",
46
- "engines": {
47
- "node": ">=14.16"
48
- },
49
- "scripts": {
50
- "build:peggy": "peggy --plugin ts-pegjs --extra-options-file src/ast/dot-shim/parser/peggy.options.json -o src/ast/dot-shim/parser/_parse.ts src/ast/dot-shim/parser/dot.peggy",
51
- "prebuild": "yarn build:peggy",
52
- "build": "tsc -p tsconfig.build.json && rollup -c",
53
- "postbuild": "prettier --write ./lib/**/index.{js,cjs,d.ts}",
54
- "pretest": "yarn build:peggy",
55
- "test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest",
56
- "format": "eslint --ext ts src --fix && prettier --write './**/*.{ts,js,json,yaml}' '!lib'",
57
- "lint": "eslint --ext ts src",
58
- "predoc": "yarn build:peggy",
59
- "doc": "typedoc"
60
- },
61
- "devDependencies": {
62
- "@rollup/plugin-replace": "^4.0.0",
63
- "@types/jest": "^28.1.6",
64
- "@types/jest-specific-snapshot": "^0.5.6",
65
- "@typescript-eslint/eslint-plugin": "^5.33.0",
66
- "@typescript-eslint/parser": "^5.33.0",
67
- "eslint": "^8.22.0",
68
- "eslint-config-prettier": "^8.5.0",
69
- "eslint-plugin-import": "^2.26.0",
70
- "eslint-plugin-jest": "^26.8.2",
71
- "eslint-plugin-prettier": "^4.2.1",
72
- "jest": "^28.1.3",
73
- "jest-snapshot-serializer-raw": "^1.2.0",
74
- "jest-specific-snapshot": "^5.0.0",
75
- "peggy": "^2.0.1",
76
- "prettier": "^2.7.1",
77
- "prettier-plugin-pegjs": "^0.5.0",
78
- "rollup": "^2.77.3",
79
- "rollup-plugin-delete": "^2.0.0",
80
- "rollup-plugin-dts": "^4.2.2",
81
- "svgo": "^2.8.0",
82
- "ts-jest": "^28.0.7",
83
- "ts-pegjs": "^2.1.0",
84
- "typedoc": "^0.23.15",
85
- "typescript": "^4.7.4"
32
+ "./ast": {
33
+ "import": "./lib/ast/index.js",
34
+ "require": "./lib/ast/index.cjs",
35
+ "types": "./lib/ast/index.d.ts"
36
+ }
37
+ },
38
+ "imports": {
39
+ "#lib/*": {
40
+ "import": "./lib/*/index.js",
41
+ "require": "./lib/*/index.cjs",
42
+ "types": "./lib/*/index.d.ts"
86
43
  }
87
- }
44
+ },
45
+ "license": "MIT",
46
+ "engines": {
47
+ "node": ">=14.16"
48
+ },
49
+ "scripts": {
50
+ "build:peggy": "peggy --plugin ts-pegjs --extra-options-file src/ast/dot-shim/parser/peggy.options.json -o src/ast/dot-shim/parser/_parse.ts src/ast/dot-shim/parser/dot.peggy",
51
+ "prebuild": "yarn build:peggy",
52
+ "build": "tsc -p tsconfig.build.json && rollup -c",
53
+ "postbuild": "prettier --write ./lib/**/index.{js,cjs,d.ts}",
54
+ "pretest": "yarn build:peggy",
55
+ "test": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest",
56
+ "format": "eslint --ext ts src --fix && prettier --write './**/*.{ts,js,json,yaml}' '!lib'",
57
+ "lint": "eslint --ext ts src",
58
+ "predoc": "yarn build:peggy",
59
+ "doc": "typedoc"
60
+ },
61
+ "devDependencies": {
62
+ "@rollup/plugin-replace": "^4.0.0",
63
+ "@types/jest": "^28.1.6",
64
+ "@types/jest-specific-snapshot": "^0.5.6",
65
+ "@typescript-eslint/eslint-plugin": "^5.33.0",
66
+ "@typescript-eslint/parser": "^5.33.0",
67
+ "eslint": "^8.22.0",
68
+ "eslint-config-prettier": "^8.5.0",
69
+ "eslint-plugin-import": "^2.26.0",
70
+ "eslint-plugin-jest": "^26.8.2",
71
+ "eslint-plugin-prettier": "^4.2.1",
72
+ "jest": "^28.1.3",
73
+ "jest-snapshot-serializer-raw": "^1.2.0",
74
+ "jest-specific-snapshot": "^5.0.0",
75
+ "peggy": "^2.0.1",
76
+ "prettier": "^2.7.1",
77
+ "prettier-plugin-pegjs": "^0.5.0",
78
+ "rollup": "^2.77.3",
79
+ "rollup-plugin-delete": "^2.0.0",
80
+ "rollup-plugin-dts": "^4.2.2",
81
+ "svgo": "^2.8.0",
82
+ "ts-jest": "^28.0.7",
83
+ "ts-pegjs": "^2.1.0",
84
+ "typedoc": "^0.23.15",
85
+ "typescript": "^4.7.4"
86
+ }
87
+ }