mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
* add documentation for ai agents * docs: consolidate CLAUDE.md and CONTRIBUTING.md, add style guidelines - Refactor CLAUDE.md to reference CONTRIBUTING.md for build/test/format info - Expand CONTRIBUTING.md with comprehensive build targets, env vars, and testing - Add code style guidelines section with conventional commits - Standardize SDK prettier config to use single quotes (matching web) - Add project-level Claude Code settings to disable co-author attribution * style(sdk): apply prettier with single quotes Run prettier across sdk/base and sdk/package to apply the standardized quote style (single quotes matching web). * docs: add USER.md for per-developer TODO filtering - Add agents/USER.md to .gitignore (contains user identifier) - Document session startup flow in CLAUDE.md: - Create USER.md if missing, prompting for identifier - Filter TODOs by @username tags - Offer relevant TODOs on session start * docs: add i18n documentation task to agent TODOs * docs: document i18n ID patterns in core/ Add agents/i18n-patterns.md covering rust-i18n setup, translation file format, t!() macro usage, key naming conventions, and locale selection. Remove completed TODO item and add reference in CLAUDE.md. * chore: clarify that all builds work on any OS with Docker
64 lines
1.6 KiB
JSON
64 lines
1.6 KiB
JSON
{
|
|
"name": "@start9labs/start-sdk",
|
|
"version": "0.4.0-beta.48",
|
|
"description": "Software development kit to facilitate packaging services for StartOS",
|
|
"main": "./package/lib/index.js",
|
|
"types": "./package/lib/index.d.ts",
|
|
"sideEffects": true,
|
|
"typesVersion": {
|
|
">=3.1": {
|
|
"*": [
|
|
"package/lib/*",
|
|
"base/lib/*"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && tsc --project tsconfig-cjs.json && copyfiles package.json dist",
|
|
"test": "jest -c ./jest.config.js --coverage",
|
|
"buildOutput": "ts-node ./lib/test/makeOutput.ts && npx prettier --write \"**/*.ts\"",
|
|
"check": "tsc --noEmit",
|
|
"tsc": "tsc"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Start9Labs/start-os.git"
|
|
},
|
|
"author": "Start9 Labs",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/Start9Labs/start-os/issues"
|
|
},
|
|
"homepage": "https://github.com/Start9Labs/start-os#readme",
|
|
"dependencies": {
|
|
"isomorphic-fetch": "^3.0.0",
|
|
"mime": "^4.0.7",
|
|
"ts-matches": "^6.3.2",
|
|
"yaml": "^2.7.1",
|
|
"deep-equality-data-structures": "^2.0.0",
|
|
"ini": "^5.0.0",
|
|
"@types/ini": "^4.1.1",
|
|
"@iarna/toml": "^3.0.0",
|
|
"@noble/curves": "^1.8.2",
|
|
"@noble/hashes": "^1.7.2"
|
|
},
|
|
"prettier": {
|
|
"trailingComma": "all",
|
|
"tabWidth": 2,
|
|
"semi": false,
|
|
"singleQuote": true
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.4.0",
|
|
"copyfiles": "^2.4.1",
|
|
"jest": "^29.4.3",
|
|
"peggy": "^3.0.2",
|
|
"prettier": "^3.2.5",
|
|
"ts-jest": "^29.0.5",
|
|
"ts-node": "^10.9.1",
|
|
"ts-pegjs": "^4.2.1",
|
|
"tsx": "^4.7.1",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|