@phun-ky/moebius 0.1.0

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.
package/package.json ADDED
@@ -0,0 +1,78 @@
1
+ {
2
+ "name": "@phun-ky/moebius",
3
+ "version": "0.1.0",
4
+ "description": "asd",
5
+ "main": "moebius.js",
6
+ "types": "moebius.d.ts",
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "scripts": {
11
+ "rollup": "rollup -c",
12
+ "prerollup:dev": "npm run clean",
13
+ "rollup:dev": "rollup -c -w",
14
+ "clean": "rm -rf dist/ dts/ ./moebius.js",
15
+ "build": "npm run clean && npm run rollup",
16
+ "dev": "npx browser-sync start --server --files \"dev/*.html\" \"*.css\" --index \"dev/index.html\" --serveStatic \"/dev/*.html\"",
17
+ "docs:gen": "node ./node_modules/.bin/typedoc --entryPoints src --entryPointStrategy expand --gitRevision main --githubPages false --plugin typedoc-plugin-markdown --tsconfig tsconfig.json --hideInPageTOC --out api --readme none",
18
+ "commit": "npx git-cz",
19
+ "release": "release-it"
20
+ },
21
+ "files": [
22
+ "/moebius.js",
23
+ "/moebius.js.map",
24
+ "/moebius.d.ts"
25
+ ],
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+ssh://git@github.com/phun-ky/moebius.git"
29
+ },
30
+ "author": "Alexander Vassbotn Røyne-Helgesen <alexander+github.com@phun-ky.net>",
31
+ "license": "MIT",
32
+ "bugs": {
33
+ "url": "https://github.com/phun-ky/moebius/issues"
34
+ },
35
+ "homepage": "https://github.com/phun-ky/moebius#readme",
36
+ "devDependencies": {
37
+ "@release-it/conventional-changelog": "^7.0.1",
38
+ "@rollup/plugin-commonjs": "^17.1.0",
39
+ "@rollup/plugin-node-resolve": "^11.2.0",
40
+ "@typescript-eslint/eslint-plugin": "^5.7.0",
41
+ "@typescript-eslint/parser": "^5.7.0",
42
+ "eslint": "^7.32.0",
43
+ "eslint-config-airbnb": "^18.2.1",
44
+ "eslint-config-prettier": "^8.3.0",
45
+ "eslint-plugin-compat": "^3.13.0",
46
+ "eslint-plugin-import": "^2.24.2",
47
+ "eslint-plugin-prettier": "^4.0.0",
48
+ "eslint-plugin-react": "^7.23.2",
49
+ "eslint-plugin-react-hooks": "^4.2.0",
50
+ "git-cz": "^4.9.0",
51
+ "network-information-types": "^0.1.1",
52
+ "prettier": "^2.4.1",
53
+ "prettier-eslint": "^13.0.0",
54
+ "release-it": "^16.1.5",
55
+ "rollup": "^2.39.0",
56
+ "rollup-plugin-dts": "^4.0.1",
57
+ "@rollup/plugin-terser": "^0.4.4",
58
+ "rollup-plugin-typescript2": "^0.35.0",
59
+ "ts-node": "^10.9.1",
60
+ "tslib": "^2.3.1",
61
+ "typedoc": "^0.25.2",
62
+ "typedoc-plugin-frontmatter": "^0.0.2",
63
+ "typedoc-plugin-markdown": "^3.15.3",
64
+ "typedoc-plugin-mdn-links": "^3.0.3",
65
+ "typedoc-plugin-no-inherit": "^1.4.0",
66
+ "typedoc-plugin-rename-defaults": "^0.6.5",
67
+ "typescript": "^4.5.4"
68
+ },
69
+ "config": {
70
+ "commitizen": {
71
+ "path": "./node_modules/git-cz"
72
+ }
73
+ },
74
+ "dependencies": {
75
+ "chroma-js": "^2.4.2",
76
+ "nearest-color": "^0.4.4"
77
+ }
78
+ }