-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.58 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
{
"name": "logical-simulator-circuits",
"version": "1.0.0",
"description": "All example and community circuits for Logical Simulator.",
"keywords": [
"logical",
"simulator",
"logical-simulator",
"logical simulator",
"logic",
"logic gate",
"logic gates",
"logic gate simulator",
"example",
"example circuit",
"community",
"community circuit",
"repository",
"circuit repository",
"example circuit repository",
"community circuit repository"
],
"homepage": "https://github.com/UnsignedArduino/LogicalSimulatorCommunity",
"bugs": "https://github.com/UnsignedArduino/LogicalSimulatorCommunity/issues",
"license": "LGPL-2.1-or-later",
"author": {
"name": "UnsignedArduino",
"email": "UnsignedArduino@outlook.com",
"url": "https://github.com/UnsignedArduino"
},
"repository": {
"type": "git",
"url": "https://github.com/UnsignedArduino/LogicalSimulatorCommunity.git"
},
"private": true,
"scripts": {
"compile": "tsc",
"dev": "ts-node ./src/main.ts",
"logicalSimulatorCommunityCLI": "node ./dist/main.js",
"lint": "next lint",
"writeLint": "next lint --fix",
"format": "yarn run prettier --check .",
"writeFormat": "yarn run prettier --write .",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "^18.11.17",
"@types/yargs": "^17.0.17",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"yargs": "^17.6.2"
}
}