๐Ÿ“ฆ GitSquared / rinzler

๐Ÿ“„ package.json ยท 69 lines
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": "rinzler-engine",
  "version": "1.1.2",
  "description": "A parallel processing engine for the browser.",
  "main": "./dist/rinzler.umd.js",
  "module": "./dist/rinzler.esm.js",
  "types": "./dist/types/index.d.ts",
  "scripts": {
    "prepare": "husky install",
    "lint": "eslint --color --ignore-path .gitignore \"src/**/*.ts\" \"worker-src/**/*.ts\"",
    "test": "tsc -p src && tsc -p worker-src",
    "build": "rollup --config",
    "make-docs": "typedoc && echo 'rinzler.js.org' > docs/CNAME"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "lint-staged": {
    "./*.js": "eslint --cache",
    "./src/**/*.ts": "eslint --cache",
    "./worker-src/**/*.ts": "eslint --cache"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/GitSquared/rinzler.git"
  },
  "author": "Gabriel SAILLARD <gabriel@saillard.dev> (https://gaby.dev)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/GitSquared/rinzler/issues"
  },
  "homepage": "https://github.com/GitSquared/rinzler#readme",
  "dependencies": {
    "nanoid": "^3.3.4"
  },
  "devDependencies": {
    "@babel/core": "^7.20.2",
    "@babel/plugin-proposal-class-properties": "^7.18.6",
    "@babel/preset-env": "^7.20.2",
    "@babel/preset-typescript": "^7.18.6",
    "@commitlint/cli": "^17.6.1",
    "@commitlint/config-conventional": "^12.1.4",
    "@rollup/plugin-babel": "^5.3.1",
    "@rollup/plugin-node-resolve": "^13.3.0",
    "@rollup/plugin-replace": "^2.4.2",
    "@types/node": "^15.14.9",
    "@typescript-eslint/eslint-plugin": "^4.33.0",
    "@typescript-eslint/parser": "^4.33.0",
    "eslint": "^7.32.0",
    "husky": "^6.0.0",
    "komit": "^1.0.5",
    "lint-staged": "^13.2.1",
    "rollup": "^2.79.1",
    "rollup-plugin-analyzer": "^4.0.0",
    "rollup-plugin-copy": "^3.4.0",
    "rollup-plugin-license": "^2.9.1",
    "rollup-plugin-progress": "^1.1.2",
    "rollup-plugin-string": "^3.0.0",
    "rollup-plugin-terser": "^7.0.2",
    "rollup-plugin-typescript2": "^0.34.1",
    "tslib": "^2.4.1",
    "typedoc": "^0.23.20",
    "typedoc-plugin-rename-defaults": "^0.6.4",
    "typescript": "^4.8.4"
  }
}