UNPKG

@composita/source-location

Version:

Composita language source location.

63 lines (62 loc) 1.73 kB
{ "name": "@composita/source-location", "version": "0.2.0", "description": "Composita language source location.", "main": "dist/cjs/location.js", "module": "dist/esm/location.js", "types": "dist/types/location.d.ts", "type": "commonjs", "files": [ "dist", "src" ], "scripts": { "ts:cjs": "tsc -p ts/cjs.tsconfig.json", "ts:esm": "tsc -p ts/esm.tsconfig.json", "ts:typedefs": "tsc -p ts/types.tsconfig.json", "ts:all": "yarn ts:cjs && yarn ts:esm && yarn ts:typedefs", "build": "yarn clean && yarn ts:all", "clean": "rimraf dist", "lint": "eslint 'src/**/*.ts'", "prepublishOnly": "yarn lint && yarn build", "postpublish": "yarn clean" }, "repository": { "type": "git", "url": "git+https://github.com/Composita/source-location.git" }, "keywords": [ "composita", "source-location" ], "author": { "name": "Hansruedi Patzen", "email": "hp@revy.ch", "url": "https://www.revy.ch" }, "license": "0BSD", "bugs": { "url": "https://github.com/Composita/source-location/issues" }, "homepage": "https://www.composita.dev/", "devDependencies": { "@types/node": "^14.0.25", "@typescript-eslint/eslint-plugin": "^3.7.0", "@typescript-eslint/parser": "^3.7.0", "eslint": "^7.5.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-prettier": "^3.1.4", "prettier": "^2.0.5", "rimraf": "^3.0.2", "ts-node": "^8.10.2", "typescript": "^3.9.7" }, "dependencies": { "@composita/ts-utility-types": "^0.2.0", "vscode-languageserver-types": "^3.15.1" }, "peerDependencies": { "@composita/ts-utility-types": "^0.2.0", "vscode-languageserver-types": "^3.15.1" } }