-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 4.49 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 4.49 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@lindentech/somon-script",
"homepage": "https://lindentech.de",
"version": "0.3.60",
"description": "A programming language that compiles to JavaScript, written in Tajik Cyrillic",
"main": "dist/index.js",
"bin": {
"somon": "dist/cli.js"
},
"engines": {
"node": "^20.0.0 || ^22.0.0 || ^23.0.0 || ^24.0.0"
},
"scripts": {
"build": "npm run clean && npx tsc",
"build:watch": "npx tsc --watch",
"dev": "npm run build:watch",
"test": "./jest-wrapper.sh",
"test:watch": "jest --watch",
"test:coverage": "./jest-wrapper.sh --coverage",
"test:ci": "npm run build && npx jest --ci --coverage --watchAll=false --maxWorkers=1",
"test:unit": "jest --testPathPattern='(lexer|parser|compiler|type-checker)\\.test\\.ts'",
"test:integration": "jest --testPathPattern='(integration|cli)\\.test\\.ts'",
"test:performance": "jest --testPathPattern='performance\\.test\\.ts'",
"test:cross-platform": "jest --testPathPattern='cross-platform\\.test\\.ts'",
"test:error-handling": "jest --testPathPattern='error-handling\\.test\\.ts'",
"test:all-versions": "./scripts/test-all-node-versions.sh",
"lint": "eslint src tests --ext .ts",
"lint:check": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"lint:src": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"*.{js,json,md}\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"*.{js,json,md}\"",
"docs": "typedoc",
"docs:generate": "typedoc",
"docs:serve": "typedoc --watch --serve",
"type-check": "npx tsc --noEmit",
"start": "node dist/cli.js",
"clean": "node -e \"const fs = require('fs'); const path = require('path'); ['dist', 'coverage'].forEach(dir => { try { fs.rmSync(dir, {recursive: true, force: true}); } catch(e) {} }); try { fs.readdirSync('.').filter(f => f.endsWith('.tgz')).forEach(f => fs.unlinkSync(f)); } catch(e) {} console.log('✅ Clean completed successfully');\"",
"prepublishOnly": "npm run build && npm run test:ci",
"prepack": "npm run build",
"benchmark": "node scripts/benchmark.js",
"examples": "node scripts/run-examples.js",
"test:examples": "node scripts/run-examples.js --validate",
"audit:examples": "node scripts/audit-examples.js",
"version:patch": "node scripts/increment-version.js patch",
"version:minor": "node scripts/increment-version.js minor",
"version:major": "node scripts/increment-version.js major",
"version:auto": "node scripts/increment-version.js patch",
"version:auto:minor": "node scripts/increment-version.js minor",
"version:auto:major": "node scripts/increment-version.js major",
"version": "node -e \"const pkg=require('./package.json'); const jsr=require('./jsr.json'); jsr.version=pkg.version; require('fs').writeFileSync('jsr.json', JSON.stringify(jsr, null, 2)); console.log('✅ Synchronized jsr.json version to', pkg.version);\"",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": ["eslint --fix", "prettier --write"],
"*.{js,json,md}": ["prettier --write"]
},
"keywords": [
"compiler",
"tajik",
"cyrillic",
"javascript",
"programming-language"
],
"author": "LindenTech IT Consulting <info@lindentech.de> (https://lindentech.de)",
"contributors": [
{
"name": "Bakhtier Gaibulloev",
"email": "bakhtier.gaibulloev@gmail.com",
"url": "https://www.linkedin.com/in/gbakhtier/"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lindentechde/Somon-Script.git"
},
"bugs": {
"url": "https://github.com/lindentechde/Somon-Script/issues"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@types/chokidar": "^1.7.5",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.0",
"jest": "^29.0.0",
"lint-staged": "^13.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.4.1",
"typedoc": "^0.25.0"
},
"dependencies": {
"@babel/core": "^7.28.4",
"babel-preset-minify": "^0.5.2",
"chokidar": "^3.6.0",
"commander": "^11.0.0",
"source-map": "^0.7.6",
"typescript": "^5.0.0"
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"type": "commonjs",
"types": "./dist/index.d.ts"
}