-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.46 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
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
{
"name": "@sister.software/asciify",
"version": "3.1.4",
"description": "Converts images, videos, and 3D renders into ASCII art.",
"repository": "[email protected]:sister-software/asciify.git",
"packageManager": "[email protected]",
"bugs": {
"url": "https://github.com/sister-software/asciify/issues"
},
"author": "Teffen Ellis <[email protected]>",
"license": "MIT",
"main": "./dist/mod.mjs",
"module": "./dist/mod.mjs",
"types": "./dist/mod.d.mts",
"files": [
"dist/**/*"
],
"keywords": [
"ascii",
"art",
"image",
"video",
"3d",
"render",
"three",
"threejs",
"rasterizer"
],
"homepage": "https://sister.software/asciify",
"exports": {
".": {
"import": "./dist/mod.mjs",
"types": "./dist/mod.d.mts"
},
"./mod": {
"import": "./dist/mod.mjs",
"types": "./dist/mod.d.mts"
},
"./mod.mjs": {
"import": "./dist/mod.mjs",
"types": "./dist/mod.d.mts"
},
"./package.json": "./package.json"
},
"type": "module",
"scripts": {
"build": "node --no-warnings --experimental-specifier-resolution=node --loader ts-node/esm ./build.mts",
"release": "yarn run build && yarn run release-it",
"docs": "typedoc",
"demo": "http-server ./ -p 8081"
},
"devDependencies": {
"@sister.software/eslint-config": "^2.0.1",
"@sister.software/prettier-config": "^2.0.1",
"@sister.software/typescript-esm-packager": "^1.2.10",
"@types/node": "^18.15.11",
"@types/stats": "^0.16.30",
"@types/three": "^0.148.1",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"dat.gui": "^0.7.9",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-tsdoc": "^0.2.16",
"http-server": "^14.1.1",
"prettier": "^2.8.7",
"prettier-plugin-organize-imports": "^3.2.2",
"release-it": "^15.9.3",
"stats-js": "^1.0.1",
"three": "^0.148.0",
"ts-node": "^10.9.1",
"typedoc": "0.23.28",
"typedoc-github-wiki-theme": "^1.0.1",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^5.0.2"
},
"engines": {
"node": ">=16.14"
},
"prettier": "@sister.software/prettier-config",
"eslintConfig": {
"extends": [
"@sister.software/eslint-config"
],
"rules": {
"header/header": "off"
},
"ignorePatterns": [
"dist",
"results",
"node_modules",
"test/fixtures"
]
}
}